Changeset 1253 for trunk/MagicSoft/Simulation/Detector/Camera
- Timestamp:
- 03/15/02 15:17:18 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Simulation/Detector/Camera/creadparam.cxx
r1231 r1253 19 19 //= 20 20 //= $RCSfile: creadparam.cxx,v $ 21 //= $Revision: 1.1 5$21 //= $Revision: 1.16 $ 22 22 //= $Author: blanch $ 23 //= $Date: 2002-03- 04 17:15:51$23 //= $Date: 2002-03-15 15:17:18 $ 24 24 //= 25 25 //=////////////////////////////////////////////////////////////////////// … … 84 84 static float meanNSB; //@< NSB mean value (per pixel) 85 85 static int nphe2NSB=0; //@< Number of phe from shower to do NSB simulation 86 static float qThreshold[ TRIGGER_PIXELS]; //@< Threshold values86 static float qThreshold[CAMERA_PIXELS]; //@< Threshold values 87 87 static int Individual_Thres = FALSE; 88 88 static float qTailCut; //@< Tail Cut value … … 496 496 497 497 // Set qThreshold to a global value 498 for(k=0;k< TRIGGER_PIXELS;k++){498 for(k=0;k<CAMERA_PIXELS;k++){ 499 499 qThreshold[k]=Trigger_loop_lthres; 500 500 } … … 513 513 514 514 // Set qThreshold to a global value 515 for(k=0;k< TRIGGER_PIXELS;k++){515 for(k=0;k<CAMERA_PIXELS;k++){ 516 516 qThreshold[k]=Trigger_threshold; 517 517 } … … 790 790 get_threshold(float *t) 791 791 { 792 for(int i=0;i< TRIGGER_PIXELS;i++)792 for(int i=0;i<CAMERA_PIXELS;i++) 793 793 t[i]=qThreshold[i]; 794 794 } … … 1287 1287 get_Trigger_Single(float *t, int *m, int *g) 1288 1288 { 1289 for(int i=0;i< TRIGGER_PIXELS;i++)1289 for(int i=0;i<CAMERA_PIXELS;i++) 1290 1290 t[i]=qThreshold[i]; 1291 1291 *m=Trigger_multiplicity; … … 1346 1346 // 1347 1347 // $Log: not supported by cvs2svn $ 1348 // Revision 1.15 2002/03/04 17:15:51 blanch 1349 // An item, which allows to switch off the storage of the RawEvt, has been 1350 // introduced. It is called nowrite_RawEvt. To avoid confusion the item 1351 // write_all_images has been moved to write_all_events. 1352 // 1348 1353 // Revision 1.14 2002/02/28 15:07:23 blanch 1349 1354 // Small changes have been done to introduce thes step variable for the
Note:
See TracChangeset
for help on using the changeset viewer.