Ignore:
Timestamp:
03/19/04 23:01:55 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbadpixels
Files:
2 edited

Legend:

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

    r3500 r3559  
    1717!
    1818!   Author(s): Thomas Bretz, 1/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
    19 !
     19!              Markus Gaug,  3/2004 <mailto:markus@ifae.es>
     20!
    2021!   Copyright: MAGIC Software Development, 2000-2004
    2122!
  • TabularUnified trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h

    r3493 r3559  
    4141      kMeanTimeInFirstBin       = BIT(12),
    4242      kMeanTimeInLastBin        = BIT(13),
    43       kNotCalibrated            = BIT(14)   
     43      kDeviatingNumPhes         = BIT(14),
     44      kNotCalibrated            = BIT(15)   
    4445    };
    4546   
     
    6970    void SetLoGainNotFitted          () { fInfo[1] |= kLoGainNotFitted; }
    7071    void SetHiGainNotFitted          () { fInfo[1] |= kHiGainNotFitted; }
     72    void SetDeviatingNumPhes         () { fInfo[1] |= kDeviatingNumPhes; }
    7173
    7274    // Getter
     
    9092    Bool_t IsLoGainNotFitted          () const      { return fInfo[1] & kLoGainNotFitted;          }
    9193    Bool_t IsHiGainNotFitted          () const      { return fInfo[1] & kHiGainNotFitted;          }
     94    Bool_t IsDeviatingNumPhes         () const      { return fInfo[1] & kDeviatingNumPhes;         }   
    9295
     96   
    9397    Bool_t IsLoGainBad() const { return IsLoGainSaturation() || IsConvHiLoNotValid() || IsLoGainOscillating() ;}
    9498    Bool_t IsHiGainBad() const { return (IsHiGainSaturation() && IsConvHiLoNotValid()) || IsHiGainOscillating(); }
Note: See TracChangeset for help on using the changeset viewer.