Ignore:
Timestamp:
08/29/04 15:39:50 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbadpixels
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc

    r4637 r4787  
    6565// BIT(15): kDeviatingNumPhots   :  The calculated number of calibrated photons deviates too much from the mean - inconsistency
    6666// 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//
    6770//
    6871// * Set bits leading to not useable low-gain signal:
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h

    r4657 r4787  
    4848      kDeviatingFFactor         = BIT(16),
    4949      kDeviatingTimeResolution  = BIT(17),
    50       kConversionHiLoNotValid   = BIT(18)
     50      kConversionHiLoNotValid   = BIT(18),
     51      kHiGainOverFlow           = BIT(19),
     52      kLoGainOverFlow           = BIT(20)
    5153    };
    5254   
     
    98100      if (IsUncalibrated( kDeviatingFFactor    )) return 8;
    99101      if (IsUncalibrated( kDeviatingNumPhots   )) return 9;
    100       return 10;
     102      if (IsUncalibrated( kHiGainOverFlow      )) return 10;
     103      if (IsUncalibrated( kLoGainOverFlow      )) return 11;
     104      return 12;
    101105    }
    102106   
Note: See TracChangeset for help on using the changeset viewer.