Changeset 2840
- Timestamp:
- 01/19/04 11:36:40 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2839 r2840 7 7 2004/01/19: Markus Gaug 8 8 9 * mcalib/MCalibrationCalc.cc 9 10 * mcalib/MCalibrationPix.[h,cc] 10 11 - new Flag fExcluded to indicate if pixel has been excluded from -
trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.cc
r2832 r2840 1 1 /* ======================================================================== *\ 2 2 ! 3 3 ! * … … 107 107 // 108 108 MCalibrationCalc::MCalibrationCalc(const char *name, const char *title) 109 : fColor(kEBlue) 109 : fPedestals(NULL), fCalibrations(NULL), fSignals(NULL), 110 fRawEvt(NULL), fRunHeader(NULL), fEvtTime(NULL), 111 fEvents(0), fHistOverFlow(0), fCosmics(0), 112 fNumHiGainSamples(0), fNumLoGainSamples(0), fConversionHiLo(0.), 113 fColor(kEBlue) 110 114 { 111 115 … … 139 143 Int_t MCalibrationCalc::PreProcess(MParList *pList) 140 144 { 141 142 fHistOverFlow = 0;143 fEvents = 0;144 fCosmics = 0;145 145 146 146 fRawEvt = (MRawEvtData*)pList->FindObject("MRawEvtData"); … … 253 253 254 254 } 255 256 255 257 256 // -------------------------------------------------------------------------- … … 475 474 pix.SetPedestal(ped,prms); 476 475 476 477 // 478 // Check if the pixel has been excluded from the fits 479 // 480 if (pix.IsExcluded()) 481 continue; 482 477 483 // 478 484 // perform the Gauss fits to the charges … … 505 511 return kTRUE; 506 512 } 513
Note:
See TracChangeset
for help on using the changeset viewer.