Changeset 3448
- Timestamp:
- 03/09/04 19:33:36 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3447 r3448 43 43 - small modifications for better readability 44 44 - remove Getters for calibration methods 45 - added flag "UnReliableRun" in fInfo[0] 45 46 46 47 * mcalib/MCalibrationChargeCam.cc -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
r3443 r3448 20 20 enum UnsuitableType_t { 21 21 kUnsuitableRun = BIT(1), 22 kUnsuitableEvt = BIT(2) 22 kUnsuitableEvt = BIT(2), 23 kUnReliableRun = BIT(3) 23 24 }; 24 25 … … 60 61 void SetUnsuitableEvt(UnsuitableType_t typ=kUnsuitableEvt) { fInfo[0] |= typ; } 61 62 void SetSuitableEvt(UnsuitableType_t typ=kUnsuitableEvt) { fInfo[0] &= ~typ; } 63 64 void SetUnreliableRun(UnsuitableType_t typ=kUnreliableRun) { fInfo[0] |= typ; } 65 void SetReliableRun(UnsuitableType_t typ=kUnreliableRun) { fInfo[0] &= ~typ; } 62 66 63 67 // Calibration … … 103 107 Bool_t IsUnsuitableEvt(UnsuitableType_t typ=kUnsuitableEvt) const { return fInfo[0]&typ; } 104 108 Bool_t IsSuitableEvt(UnsuitableType_t typ=kUnsuitableEvt) const { return !(fInfo[0]&typ); } 109 110 Bool_t IsUnreliableRun(UnsuitableType_t typ=kUnreliableRun) const { return fInfo[0]&typ; } 111 Bool_t IsReliableRun(UnsuitableType_t typ=kUnreliableRun) const { return !(fInfo[0]&typ); } 105 112 106 113 Bool_t IsOK() const { return fInfo[0]==0; }
Note:
See TracChangeset
for help on using the changeset viewer.