Changeset 3469 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
03/11/04 10:58:01 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3466 r3469  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2004/03/11: Markus Gaug
     22
     23   * mbadpixels/MBadPixelsPix.h
     24     - removed bits about validity of calibration methods
     25
    2026
    2127 2004/03/10: Abelardo Moralejo
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h

    r3461 r3469  
    4141      kMeanTimeInFirstBin       = BIT(12),
    4242      kMeanTimeInLastBin        = BIT(13),
    43       kBlindPixelMethodNotValid = BIT(14),
    44       kFFactorMethodNotValid    = BIT(15),
    45       kPINDiodeMethodNotValid   = BIT(16),
    46       kCombinedMethodNotValid   = BIT(17)
     43      kNotCalibrated            = BIT(14)   
    4744    };
    4845   
     
    6764    void SetHiGainSaturation         () { fInfo[1] |= kHiGainSaturation; }
    6865    void SetLoGainSaturation         () { fInfo[1] |= kLoGainSaturation; }
    69     void SetCombinedMethodNotValid   () { fInfo[1] |= kCombinedMethodNotValid; }
    70     void SetPINDiodeMethodNotValid   () { fInfo[1] |= kPINDiodeMethodNotValid; }
    71     void SetFFactorMethodNotValid    () { fInfo[1] |= kFFactorMethodNotValid; }
    72     void SetBlindPixelMethodNotValid () { fInfo[1] |= kBlindPixelMethodNotValid; }
     66    void SetNotCalibrated           () { fInfo[1] |= kNotCalibrated; }
    7367    void SetMeanTimeInLastBin        () { fInfo[1] |= kMeanTimeInLastBin; }
    7468    void SetMeanTimeInFirstBin       () { fInfo[1] |= kMeanTimeInFirstBin; }
     
    9892    Bool_t IsHiGainSaturation         () const      { return fInfo[1] & kHiGainSaturation ;        }
    9993    Bool_t IsLoGainSaturation         () const      { return fInfo[1] & kLoGainSaturation ;        }
    100     Bool_t IsCombinedMethodNotValid   () const      { return fInfo[1] & kCombinedMethodNotValid;   }
    101     Bool_t IsPINDiodeMethodNotValid   () const      { return fInfo[1] & kPINDiodeMethodNotValid;   }
    102     Bool_t IsFFactorMethodNotValid    () const      { return fInfo[1] & kFFactorMethodNotValid;    }
    103     Bool_t IsBlindPixelMethodNotValid () const      { return fInfo[1] & kBlindPixelMethodNotValid; }
     94    Bool_t IsNotCalibrated            () const      { return fInfo[1] & kNotCalibrated;            }
    10495    Bool_t IsMeanTimeInLastBin        () const      { return fInfo[1] & kMeanTimeInLastBin;        }
    10596    Bool_t IsMeanTimeInFirstBin       () const      { return fInfo[1] & kMeanTimeInFirstBin;       }
Note: See TracChangeset for help on using the changeset viewer.