Print

Print


Commit in lcsim-contrib/src/main/java/org/lcsim/contrib/sATLAS on MAIN
TrackerHitDriver_sATLAS.java+6-41.1 -> 1.2
Fix bug

lcsim-contrib/src/main/java/org/lcsim/contrib/sATLAS
TrackerHitDriver_sATLAS.java 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- TrackerHitDriver_sATLAS.java	28 Apr 2009 21:18:08 -0000	1.1
+++ TrackerHitDriver_sATLAS.java	28 Apr 2009 21:32:30 -0000	1.2
@@ -62,11 +62,11 @@
         SiSensorSim pixel_simulation = new CDFSiSensorSim();
 
         //  Instantiate the readout chips and set the noise parameters
-        ReadoutChip strip_readout = new GenericReadoutChip();
-        strip_readout.setNoiseOffset(500.);
+        GenericReadoutChip strip_readout = new GenericReadoutChip();
+        strip_readout.setNoiseIntercept(500.);
         strip_readout.setNoiseSlope(30.);
-        ReadoutChip pixel_readout = new GenericReadoutChip();
-        pixel_readout.setNoiseOffset(500.);
+        GenericReadoutChip pixel_readout = new GenericReadoutChip();
+        pixel_readout.setNoiseIntercept(500.);
         pixel_readout.setNoiseSlope(30.);
 
         //  Instantiate the digitizer that produces the raw hits
@@ -74,6 +74,8 @@
 
         //  Instantiate the clusterers
         _strip_clusterer = new StripHitMaker(strip_simulation, strip_readout);
+//        _strip_clusterer.setSeedThreshold(4.);
+//        _strip_clusterer.set
         _pixel_clusterer = new PixelHitMaker(pixel_simulation, pixel_readout);
 
         //  Specify the readouts to process
CVSspam 0.2.8