Changeset 3469 for trunk/MagicSoft
- Timestamp:
- 03/11/04 10:58:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3466 r3469 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2004/03/11: Markus Gaug 22 23 * mbadpixels/MBadPixelsPix.h 24 - removed bits about validity of calibration methods 25 20 26 21 27 2004/03/10: Abelardo Moralejo -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
r3461 r3469 41 41 kMeanTimeInFirstBin = BIT(12), 42 42 kMeanTimeInLastBin = BIT(13), 43 kBlindPixelMethodNotValid = BIT(14), 44 kFFactorMethodNotValid = BIT(15), 45 kPINDiodeMethodNotValid = BIT(16), 46 kCombinedMethodNotValid = BIT(17) 43 kNotCalibrated = BIT(14) 47 44 }; 48 45 … … 67 64 void SetHiGainSaturation () { fInfo[1] |= kHiGainSaturation; } 68 65 void SetLoGainSaturation () { fInfo[1] |= kLoGainSaturation; } 69 void SetCombinedMethodNotValid () { fInfo[1] |= kCombinedMethodNotValid; } 70 void SetPINDiodeMethodNotValid () { fInfo[1] |= kPINDiodeMethodNotValid; } 71 void SetFFactorMethodNotValid () { fInfo[1] |= kFFactorMethodNotValid; } 72 void SetBlindPixelMethodNotValid () { fInfo[1] |= kBlindPixelMethodNotValid; } 66 void SetNotCalibrated () { fInfo[1] |= kNotCalibrated; } 73 67 void SetMeanTimeInLastBin () { fInfo[1] |= kMeanTimeInLastBin; } 74 68 void SetMeanTimeInFirstBin () { fInfo[1] |= kMeanTimeInFirstBin; } … … 98 92 Bool_t IsHiGainSaturation () const { return fInfo[1] & kHiGainSaturation ; } 99 93 Bool_t IsLoGainSaturation () const { return fInfo[1] & kLoGainSaturation ; } 100 Bool_t IsCombinedMethodNotValid () const { return fInfo[1] & kCombinedMethodNotValid; } 101 Bool_t IsPINDiodeMethodNotValid () const { return fInfo[1] & kPINDiodeMethodNotValid; } 102 Bool_t IsFFactorMethodNotValid () const { return fInfo[1] & kFFactorMethodNotValid; } 103 Bool_t IsBlindPixelMethodNotValid () const { return fInfo[1] & kBlindPixelMethodNotValid; } 94 Bool_t IsNotCalibrated () const { return fInfo[1] & kNotCalibrated; } 104 95 Bool_t IsMeanTimeInLastBin () const { return fInfo[1] & kMeanTimeInLastBin; } 105 96 Bool_t IsMeanTimeInFirstBin () const { return fInfo[1] & kMeanTimeInFirstBin; }
Note:
See TracChangeset
for help on using the changeset viewer.