View Javadoc

1   package org.lcsim.detector.converter.compact;
2   
3   import java.io.IOException;
4   
5   import org.jdom.Document;
6   import org.jdom.JDOMException;
7   import org.lcsim.detector.IPhysicalVolume;
8   import org.lcsim.geometry.Detector;
9   
10  public interface IDetectorConverter
11  {
12      public IPhysicalVolume convert( Detector detector, Document doc ) throws JDOMException, IOException;
13  }