Changeset 4787 for trunk/MagicSoft/Mars


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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4783 r4787  
    1919
    2020                                                 -*-*- 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
    2129 2004/08/27: Florian Goebel
    2230
     
    2634 2004/08/27: Hendrik Bartko
    2735
    28   * msignal/MExtractTime.cc
    29     - check that the pixel has a low gain before calculating the time
    30       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.
    3139
    3240 2004/08/27: Markus Gaug
  • 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   
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargePix.cc

    r4776 r4787  
    823823  if (fPheFFactorMethodVar < 0. )
    824824    return kFALSE;
    825  
     825
     826  return kTRUE;
    826827}
    827828
Note: See TracChangeset for help on using the changeset viewer.