Changeset 5592
- Timestamp:
- 12/14/04 16:24:04 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/msignal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msignal/MExtractor.cc
r5558 r5592 117 117 SetNameSignalCam(); 118 118 SetOffsetLoGain(); 119 SetRange();120 119 SetSaturationLimit(); 121 120 SetNoiseCalculation(kFALSE); … … 160 159 } 161 160 162 fPedestals = (MPedestalCam*)pList->FindObject(AddSerialNumber(fNamePedestalCam), "MPedestalCam"); 161 163 162 if (!fPedestals) 164 163 { 165 *fLog << err << fNamePedestalCam << " not found... aborting" << endl; 166 return kFALSE; 164 fPedestals = (MPedestalCam*)pList->FindObject(AddSerialNumber(fNamePedestalCam), "MPedestalCam"); 165 if (!fPedestals) 166 { 167 *fLog << err << fNamePedestalCam << " not found... aborting" << endl; 168 return kFALSE; 169 } 167 170 } 168 171 -
trunk/MagicSoft/Mars/msignal/MExtractor.h
r5548 r5592 88 88 void SetNoiseCalculation( const Bool_t b=kTRUE ) { fNoiseCalculation = b; } 89 89 90 void SetPedestals (MPedestalCam *pedcam) { fPedestals = pedcam; } 91 90 92 void Print(Option_t *o="") const; 91 93
Note:
See TracChangeset
for help on using the changeset viewer.