- Timestamp:
- 05/07/04 10:45:33 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3993 r4000 31 31 - updated to the latest version of MPedCalcPedRun 32 32 33 * macros/bootcampstandardanalysis.C 34 - updated to the latest changes in the ArrivalTime Extraction 33 35 34 36 2004/05/05: Markus Gaug -
trunk/MagicSoft/Mars/macros/bootcampstandardanalysis.C
r3862 r4000 60 60 { 61 61 62 // 63 // Choose the signal Extractor: 64 // 62 65 MExtractSlidingWindow extractor; 66 // MExtractFixedWindowPeakSearch extractor; 67 // MExtractFixedWindow extractor; 68 69 // 70 // Set Ranges or Windows 71 // 72 extractor.SetRange(5,14,5,14); 73 // extractor.SetWindows(8,8); 74 75 // 76 // Choose the arrival time Extractor: 77 // 78 MExtractTimeFastSpline timeext; 79 // MExtractTimeHighestIntegral timeext; 80 // MExtractTimeSpline timeext; 81 // 82 // Set Ranges or Windows 83 // 84 timeext.SetRange(3,12,6,14); 85 63 86 64 87 MRunIter pruns; … … 105 128 } 106 129 pedloop.SetBadPixels(badcam); 130 pedloop.SetExtractor(&extractor); 107 131 108 132 if (!pedloop.Process()) … … 122 146 calloop.SetExtractor(&extractor); 123 147 // 148 // Apply rel. time calibration: 149 // 150 calloop.SetRelTimeCalibration(); 151 calloop.SetTimeExtractor(&timeext); 152 // 124 153 // Set the corr. cams: 125 154 // … … 131 160 if (usedisplay) 132 161 calloop.SetDisplay(display); 133 134 //135 // Apply rel. time calibration:136 //137 calloop.SetRelTimeCalibration();138 //139 // Use as arrival time extractor MArrivalTimeCalc2:140 //141 calloop.SetArrivalTimeLevel(2);142 162 143 163 // -
trunk/MagicSoft/Mars/mpedestal/MPedCalcPedRun.cc
r3995 r4000 520 520 fPedestals->SetReadyToSave(); 521 521 fNumSamplesTot += fWindowSizeHiGain + fWindowSizeLoGain; 522 522 523 523 return kTRUE; 524 524 }
Note:
See TracChangeset
for help on using the changeset viewer.