View Javadoc

1   /*
2    * CylindricalBarrelCalorimeterTest.java
3    *
4    * Created on June 15, 2005, 12:00 PM
5    */
6   
7   package org.lcsim.geometry.subdetector;
8   
9   import hep.graphics.heprep.HepRepProvider;
10  import java.io.IOException;
11  import java.io.InputStream;
12  import junit.framework.TestCase;
13  import junit.framework.TestSuite;
14  import org.jdom.JDOMException;
15  import org.lcsim.geometry.Calorimeter;
16  import org.lcsim.geometry.GeometryReader;
17  import org.lcsim.geometry.compact.Detector;
18  import org.lcsim.util.xml.ElementFactory.ElementCreationException;
19  
20  import org.lcsim.geometry.layer.Layering;
21  
22  /**
23   *
24   * @author jeremym
25   */
26  public class TestBeamTrackerTest extends TestCase
27  {
28      Detector detector;
29      
30      /** Creates a new instance of CylindricalBarrelCalorimeterTest */
31      public TestBeamTrackerTest(String name)
32      {
33          super(name);
34      }
35      
36      protected void setUp() throws java.lang.Exception
37      {
38          InputStream in = this.getClass().getResourceAsStream("/org/lcsim/geometry/subdetector/TestBeamTrackerTest.xml");
39          GeometryReader reader = new GeometryReader();
40          Detector det = reader.read(in);
41      }
42      
43      public static junit.framework.Test suite()
44      {
45          return new TestSuite(TestBeamTrackerTest.class);
46      }
47      
48      public void testDummy()
49      {
50          return;
51      }    
52  }