Changeset 3480
- Timestamp:
- 03/11/04 18:45:30 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3479 r3480 64 64 - use two loops over pixels in order to determine mean flux of phe;s to 65 65 discard pixels far outside the normal distribution 66 67 * mcalib/MCalibrate.cc 68 - added case that no MBadPixelsCam is available. 69 66 70 67 71 2004/03/10: Abelardo Moralejo -
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.