Changeset 4787 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 08/29/04 15:39:50 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc
r4637 r4787 65 65 // BIT(15): kDeviatingNumPhots : The calculated number of calibrated photons deviates too much from the mean - inconsistency 66 66 // BIT(16): kDeviatingFFactor : The calculated overall F-Factor deviates too much from the mean - inconsistency 67 // BIT(19): kHiGainOverFlow : The Hi-Gain calibration histogram showed overflow without saturating the FADC 68 // BIT(20): kLoGainOverFlow : The Lo-Gain calibration histogram showed overflow 69 // 67 70 // 68 71 // * Set bits leading to not useable low-gain signal: -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
r4657 r4787 48 48 kDeviatingFFactor = BIT(16), 49 49 kDeviatingTimeResolution = BIT(17), 50 kConversionHiLoNotValid = BIT(18) 50 kConversionHiLoNotValid = BIT(18), 51 kHiGainOverFlow = BIT(19), 52 kLoGainOverFlow = BIT(20) 51 53 }; 52 54 … … 98 100 if (IsUncalibrated( kDeviatingFFactor )) return 8; 99 101 if (IsUncalibrated( kDeviatingNumPhots )) return 9; 100 return 10; 102 if (IsUncalibrated( kHiGainOverFlow )) return 10; 103 if (IsUncalibrated( kLoGainOverFlow )) return 11; 104 return 12; 101 105 } 102 106
Note:
See TracChangeset
for help on using the changeset viewer.