Ignore:
Timestamp:
04/07/04 18:59:53 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h

    r3676 r3677  
    1010protected:
    1111
    12   Int_t   fPixId;             // the pixel Id
    13 
     12  Int_t   fPixId;             // Software PixId (needed to get Id in calls to Next())
    1413  UInt_t  fFlags;             // Flag for the set bits
    1514  Float_t fHiGainMean;        // Mean from fit to high gain values
     
    2827  Float_t fLoGainProb;        // Probability of fit to low gain values
    2928
    30   enum  { kHiGainSaturation, kExcluded, kValid };
    31  
     29  enum { kHiGainSaturation, kExcluded, kValid };   // Possible bits to be sets
     30
    3231public:
    3332
     
    6564  void SetHiGainSaturation( const Bool_t  b = kTRUE );
    6665  void SetValid           ( const Bool_t  b = kTRUE );
    67 
     66 
    6867  // Getters
    6968  Float_t GetHiGainMean       () const { return fHiGainMean   ;     }
     
    8786  Float_t GetMeanErr    () const { return IsHiGainSaturation() ? GetLoGainMeanErr()     : GetHiGainMeanErr()  ;   }
    8887  Float_t GetMeanRelVar () const;
     88  Float_t GetMeanSquare () const; 
    8989  Float_t GetProb       () const { return IsHiGainSaturation() ? GetLoGainProb()        : GetHiGainProb()     ;   }
    9090  Float_t GetSigma      () const { return IsHiGainSaturation() ? GetLoGainSigma()       : GetHiGainSigma()    ;   }
     
    9494  Float_t GetNumBlackout() const { return IsHiGainSaturation() ? GetLoGainNumBlackout() : GetHiGainNumBlackout(); }
    9595  Int_t   GetPixId      () const { return fPixId ;  }
    96 
     96 
    9797  Bool_t  IsHiGainSaturation() const;
    9898  Bool_t  IsExcluded()         const;
Note: See TracChangeset for help on using the changeset viewer.