Ignore:
Timestamp:
02/25/04 06:40:43 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcalib
Files:
1 added
3 edited

Legend:

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

    r3292 r3293  
    7373
    7474  // Setters
     75  void SetColor       ( const PulserColor_t color )  {  fColor = color;  }
     76
    7577  void SetLambda      ( const Float_t f ) { fLambda      = f;  }
    7678  void SetLambdaCheck ( const Float_t f ) { fLambdaCheck = f;  }
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.h

    r3292 r3293  
    4444public:
    4545
    46   enum PulserColor_t { kEBlue, kEGreen, kEUV, kECT1 } ;
    47 
    48 private:
    49 
    50   PulserColor_t fColor; 
    51  
    52 public:
    53 
    5446  MCalibrationChargeCam(const char *name=NULL, const char *title=NULL);
    5547  ~MCalibrationChargeCam();
     
    5951
    6052  // Setters   
    61   void SetColor(    const PulserColor_t color )           {  fColor = color;         }
    6253  void SetNumPixelsExcluded(  const UInt_t n )            {  fNumExcludedPixels = n; }
    6354  void SetGeomCam(  const MGeomCam *geom)                 {  fGeomCam = geom;        }
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc

    r3292 r3293  
    196196}
    197197
    198 void MHCalibrationChargeBlindPix::SetSinglePheFitOK   ( const Bool_t b=kTRUE)
     198void MHCalibrationChargeBlindPix::SetSinglePheFitOK (const Bool_t b)
    199199{
    200200    b ? SETBIT(fFlags,kSinglePheFitOK) : CLRBIT(fFlags,kSinglePheFitOK);
    201201}
    202202
    203 void MHCalibrationChargeBlindPix::SetPedestalFitOK( const Bool_t b=kTRUE)
     203void MHCalibrationChargeBlindPix::SetPedestalFitOK(const Bool_t b)
    204204{
    205205    b ? SETBIT(fFlags,kPedestalFitOK) : CLRBIT(fFlags,kPedestalFitOK);
Note: See TracChangeset for help on using the changeset viewer.