View Javadoc

1   package org.lcsim.recon.tracking.spacegeom;
2   
3   import junit.framework.TestCase;
4   
5   /**
6    *
7    * @author Norman A. Graf
8    *
9    * @version $Id:
10   */
11  public class SpacePointTensorTest extends TestCase
12  {
13      boolean debug = false;
14      public void testSpacePointTensor()
15      {
16          SpacePointTensor spt = new SpacePointTensor();
17          if(debug) System.out.println(spt);
18          //TODO should check that everything is initialized to zero
19          // trust Java for now.
20      }
21  }