Changeset 3449
- Timestamp:
- 03/09/04 19:39:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3448 r3449 44 44 - remove Getters for calibration methods 45 45 - added flag "UnReliableRun" in fInfo[0] 46 47 * mcalib/MHCalibrationChargeCam.cc 48 * mcalib/MCalibrationChargeCalc.cc 49 - fill MBadPixelsPix with UnReliableRun or UnSuitableRun when 50 calibration does not succeed. 51 46 52 47 53 * mcalib/MCalibrationChargeCam.cc -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc
r3434 r3449 37 37 using namespace std; 38 38 39 const Char_t MBadPixelsPix::fgRunMask=MBadPixelsPix::kUnsuitableRun;39 const Int_t MBadPixelsPix::fgRunMask=MBadPixelsPix::kUnsuitableRun; 40 40 // ------------------------------------------------------------------------ 41 41 // … … 60 60 { 61 61 fInfo[0] &= fgRunMask; 62 63 62 } 64 63 -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
r3448 r3449 21 21 kUnsuitableRun = BIT(1), 22 22 kUnsuitableEvt = BIT(2), 23 kUn ReliableRun = BIT(3)23 kUnreliableRun = BIT(3) 24 24 }; 25 25 … … 46 46 47 47 48 static const Char_t fgRunMask; // All types which are not event wise determined48 static const Int_t fgRunMask; // All types which are not event wise determined 49 49 50 50 void Reset();
Note:
See TracChangeset
for help on using the changeset viewer.