- Timestamp:
- 04/26/04 19:11:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3840 r3841 52 52 - removed functions: IsCalibrationResultOK() 53 53 and IsCalibrationSignalOK() 54 - changed function IsOK() such that it returns false only if 55 the pixels is not suitable (run or evt) 56 54 57 55 58 * mcalib/MCalibrate.cc -
trunk/MagicSoft/Mars/mcalib/MCalibrate.cc
r3839 r3841 293 293 { 294 294 MBadPixelsPix &bad = (*fBadPixels)[pixidx]; 295 if ( !bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun))295 if (bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun)) 296 296 continue; 297 297 } … … 411 411 */ 412 412 413 *fLog << err << pixidx << " " << nphot << endl; 414 413 415 MCerPhotPix *cpix = fCerPhotEvt->AddPixel(pixidx, nphot, nphotErr); 414 416 -
trunk/MagicSoft/Mars/mcalib/MCalibrateRelTimes.cc
r3839 r3841 164 164 { 165 165 MBadPixelsPix &bad = (*fBadPixels)[pixidx]; 166 if ( !bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun))166 if (bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun)) 167 167 continue; 168 168 }
Note:
See TracChangeset
for help on using the changeset viewer.