Changeset 7188 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 07/13/05 19:06:26 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc
r5797 r7188 44 44 // are coded in the following form: 45 45 // 46 // 47 // * Set bits leading to an unsuitable flag: 48 // 49 // BIT(7 ): kLoGainSaturation : The Low Gain signals were saturated during calibration 50 // BIT(8 ): kChargeIsPedestal : The calibration signal contained only pedestals - presumably dead pixel 51 // BIT(12): kMeanTimeInFirstBin : The signal has its mean maximum in the first used FADC slice - signal extractor bad 52 // BIT(13): kMeanTimeInLast2Bins : The signal has its mean maximum in the last two used FADC slice - signal extractor bad 53 // BIT(14): kDeviatingNumPhes : The calculated number of phes deviates by more than +6-5.5 sigma of the phes mean of the same area idx. 54 // BIT(19): kHiGainOverFlow : The Hi-Gain calibration histogram showed overflow in more than 0.5% of the events 55 // BIT(20): kLoGainOverFlow : The Lo-Gain calibration histogram showed overflow in more than 0.5% of the events 56 // BIT(23): kDeadPedestalRms : The pedestal RMS was 4.5 sigma below or 25 sigma above the average per area idx. 57 // BIT(24): kFluctuatingArivalTimes: The RMS of the position of the pulse maximum is larger than 3.5 FADC slices. 58 // BIT(24): kLoGainBlackout : A high gain saturated pixel had too many blackout events in the low gain 59 // 60 // 46 61 // * Set bits leading to an unreliable flag: 47 62 // … … 52 67 // BIT(5 ): kLoGainOscillating : The Low Gain signals fourier transform showed abnormal behavior 53 68 // BIT(6 ): kRelTimeOscillating : The High Gain arrival times fourier transform showed abnormal behavior 54 // BIT(1 4): kDeviatingNumPhes : The calculated number of photo-electrons deviates too much from the mean - inconsistency69 // BIT(11): kChargeSigmaNotValid : The sigma of the signal distribution is smaller than the pedestal RMS - presumably a pixel with a star in its FOV only during the pedestal taking 55 70 // BIT(16): kDeviatingFFactor : The calculated overall F-Factor deviates too much from the mean - inconsistency 56 71 // BIT(15): kDeviatingNumPhots : The calculated number of calibrated photons deviates too much from the mean - inconsistency 57 72 // 58 // * Set bits leading to an unsuitable flag:59 //60 // BIT(7 ): kLoGainSaturation : The Low Gain signals were saturated during calibration61 // BIT(8 ): kChargeIsPedestal : The calibration signal contained only pedestals - presumably dead pixel62 // BIT(9 ): kChargeErrNotValid : The absolute error of the derived charge has given non-sense - presumably pedestal63 // BIT(10): kChargeRelErrNotValid: The relative error of the derived charge was too large or too small64 // BIT(11): kChargeSigmaNotValid : The sigma of the pedestal distribution smaller than the pedestal RMS - presumably a pixel with a star in its FOV only during the pedestal taking65 // BIT(12): kMeanTimeInFirstBin : The signal has its mean maximum in the first used FADC slice - signal extractor bad66 // BIT(13): kMeanTimeInLast2Bins : The signal has its mean maximum in the last two used FADC slice - signal extractor bad67 // BIT(19): kHiGainOverFlow : The Hi-Gain calibration histogram showed overflow without saturating the FADC68 // BIT(20): kLoGainOverFlow : The Lo-Gain calibration histogram showed overflow69 73 // 70 74 // * Set bits leading to not useable low-gain signal: 71 75 // 72 // BIT(17): kConversionHiLoNotValid: The calibrated Conversion between Hi-Gain and Low Gain gives absurd results76 // BIT(17): kConversionHiLoNotValid: The inter-calibration constant between Hi-Gain and Low Gain does not exist. 73 77 // 74 78 // These bits can be called with the enum MBadPixelsPix::UncalibratedType_t in combination -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
r7103 r7188 55 55 kHiLoOscillating = BIT(22), 56 56 kDeadPedestalRms = BIT(23), 57 kFluctuatingArrivalTimes = BIT(24) 57 kFluctuatingArrivalTimes = BIT(24), 58 kLoGainBlackout = BIT(25) 58 59 }; 59 60 … … 90 91 || IsUncalibrated(kLoGainSaturation ) 91 92 || IsUncalibrated(kConversionHiLoNotValid) 92 || IsUncalibrated(kLoGainOscillating ) ; } 93 || IsUncalibrated(kLoGainOscillating ) 94 || IsUncalibrated(kLoGainBlackout ); } 93 95 Bool_t IsHiGainBad() const { return IsUnsuitable (kUnsuitableRun ) 94 96 || IsUncalibrated(kHiGainOscillating ) ; } 95 97 96 98 Int_t GetUnsuitableCalLevel() const { 97 if (!IsUnsuitable()) return 0; 98 if (IsUncalibrated( kChargeIsPedestal )) return 1; 99 if (IsUncalibrated( kChargeRelErrNotValid)) return 2; 100 if (IsUncalibrated( kLoGainSaturation )) return 3; 101 if (IsUncalibrated( kMeanTimeInFirstBin )) return 4; 102 if (IsUncalibrated( kMeanTimeInLast2Bins )) return 5; 103 if (IsUncalibrated( kDeviatingNumPhots )) return 6; 104 if (IsUncalibrated( kHiGainOverFlow )) return 7; 105 if (IsUncalibrated( kLoGainOverFlow )) return 8; 106 if (IsUncalibrated( kDeadPedestalRms )) return 9; 107 if (IsUncalibrated( kFluctuatingArrivalTimes)) return 10; 108 if (IsUncalibrated( kDeviatingNumPhes )) return 11; 109 if (IsUncalibrated( kPreviouslyExcluded )) return 12; 110 return 13; 99 if (!IsUnsuitable()) return 0; 100 if (IsUncalibrated( kChargeIsPedestal )) return 1; 101 if (IsUncalibrated( kLoGainSaturation )) return 2; 102 if (IsUncalibrated( kMeanTimeInFirstBin )) return 3; 103 if (IsUncalibrated( kMeanTimeInLast2Bins )) return 4; 104 if (IsUncalibrated( kHiGainOverFlow )) return 5; 105 if (IsUncalibrated( kLoGainOverFlow )) return 6; 106 if (IsUncalibrated( kDeadPedestalRms )) return 7; 107 if (IsUncalibrated( kFluctuatingArrivalTimes)) return 8; 108 if (IsUncalibrated( kDeviatingNumPhes )) return 9; 109 if (IsUncalibrated( kLoGainBlackout )) return 10; 110 if (IsUncalibrated( kPreviouslyExcluded )) return 11; 111 return 12; 111 112 } 112 113
Note:
See TracChangeset
for help on using the changeset viewer.