Changeset 3480 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 03/11/04 18:45:30 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrate.cc
r3466 r3480 99 99 // - MCalibrationChargeCam 100 100 // - MExtractedSignalCam 101 // - MBadPixelsCam 101 102 // 102 103 // The following output containers are also searched and created if … … 117 118 118 119 fBadPixels = (MBadPixelsCam*)pList->FindObject(AddSerialNumber("MBadPixelsCam")); 119 120 120 if (!fBadPixels) 121 { 122 *fLog << err << AddSerialNumber("MBadPixelsCam") << " not found ... aborting" << endl; 123 return kFALSE; 124 } 125 126 if(fCalibrationMode>kNone) 121 *fLog << warn << AddSerialNumber("MBadPixelsCam") << " not found ... no action" << endl; 122 123 if(fCalibrationMode>kNone) 127 124 { 128 125 … … 228 225 { 229 226 230 MCalibrationChargePix &pix = (*fCalibrations)[pixidx]; 227 228 MCalibrationChargePix &pix = (*fCalibrations)[pixidx]; 231 229 MBadPixelsPix &bad = (*fBadPixels)[pixidx]; 232 230 233 if (!bad.IsCalibrationResultOK()) 234 continue; 235 231 if (fBadPixels) 232 if (!bad.IsCalibrationResultOK()) 233 continue; 234 236 235 switch(fCalibrationMode) 237 236 {
Note:
See TracChangeset
for help on using the changeset viewer.