Changeset 3559 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 03/19/04 23:01:55 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc ¶
r3500 r3559 17 17 ! 18 18 ! Author(s): Thomas Bretz, 1/2004 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! 19 ! Markus Gaug, 3/2004 <mailto:markus@ifae.es> 20 ! 20 21 ! Copyright: MAGIC Software Development, 2000-2004 21 22 ! -
TabularUnified trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h ¶
r3493 r3559 41 41 kMeanTimeInFirstBin = BIT(12), 42 42 kMeanTimeInLastBin = BIT(13), 43 kNotCalibrated = BIT(14) 43 kDeviatingNumPhes = BIT(14), 44 kNotCalibrated = BIT(15) 44 45 }; 45 46 … … 69 70 void SetLoGainNotFitted () { fInfo[1] |= kLoGainNotFitted; } 70 71 void SetHiGainNotFitted () { fInfo[1] |= kHiGainNotFitted; } 72 void SetDeviatingNumPhes () { fInfo[1] |= kDeviatingNumPhes; } 71 73 72 74 // Getter … … 90 92 Bool_t IsLoGainNotFitted () const { return fInfo[1] & kLoGainNotFitted; } 91 93 Bool_t IsHiGainNotFitted () const { return fInfo[1] & kHiGainNotFitted; } 94 Bool_t IsDeviatingNumPhes () const { return fInfo[1] & kDeviatingNumPhes; } 92 95 96 93 97 Bool_t IsLoGainBad() const { return IsLoGainSaturation() || IsConvHiLoNotValid() || IsLoGainOscillating() ;} 94 98 Bool_t IsHiGainBad() const { return (IsHiGainSaturation() && IsConvHiLoNotValid()) || IsHiGainOscillating(); }
Note:
See TracChangeset
for help on using the changeset viewer.