Print

Print


Commit in lcsim/src/org/lcsim/recon/vertexing/pixsim on MAIN
PixilatedSensor.java+2-21.2 -> 1.3
fixed bug

lcsim/src/org/lcsim/recon/vertexing/pixsim
PixilatedSensor.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- PixilatedSensor.java	17 Dec 2010 21:48:45 -0000	1.2
+++ PixilatedSensor.java	17 Dec 2010 22:03:10 -0000	1.3
@@ -35,7 +35,7 @@
   private IPixelSensorElectronics electronics = null;
   private IReadout readout = null;
   private ErrorEstimate covm = null;
-  private Hep3Vector Lorentz_corr = new BasicHep3Vector(0.,0.,0.);
+  private BasicHep3Vector Lorentz_corr = new BasicHep3Vector(0.,0.,0.);
   public int nrows = 512;
   public int ncolumns = 512;
   private double x0 = 0.;
@@ -646,7 +646,7 @@
     double iclcc = (int) Math.floor(clcc);
     double[] locc = toLocal(clcr,clcc);
     Hep3Vector lposnc = new BasicHep3Vector(locc[0],locc[1],locc[2]);
-    Hep3Vector lpos = VecOp.add(lposnc,Lorentz_corr)
+    Hep3Vector lpos = VecOp.add(lposnc,Lorentz_corr);
     Hep3Vector glpos = global.transformed(lpos);
     double[] pos = new double[3];
     pos[0]=glpos.x();
CVSspam 0.2.8