Changeset 4787 for trunk/MagicSoft/Mars
- Timestamp:
- 08/29/04 15:39:50 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4783 r4787 19 19 20 20 -*-*- END OF LINE -*-*- 21 2004/08/29: Markus Gaug 22 23 * mbadpixels/MBadPixelsPix.[h,cc] 24 - introduced new calibration bits: kHiGainOverFlow 25 and kLoGainOverFlow being filled when the calibration histograms 26 overflow. Will cause an kUnsuitableRun afterwards. 27 28 21 29 2004/08/27: Florian Goebel 22 30 … … 26 34 2004/08/27: Hendrik Bartko 27 35 28 * msignal/MExtractTime.cc29 - check that the pixel has a low gain before calculating the time30 for the low gain in case of a saturated high gain.36 * msignal/MExtractTime.cc 37 - check that the pixel has a low gain before calculating the time 38 for the low gain in case of a saturated high gain. 31 39 32 40 2004/08/27: Markus Gaug -
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 -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargePix.cc
r4776 r4787 823 823 if (fPheFFactorMethodVar < 0. ) 824 824 return kFALSE; 825 825 826 return kTRUE; 826 827 } 827 828
Note:
See TracChangeset
for help on using the changeset viewer.