Changeset 3293 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 02/25/04 06:40:43 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeBlindPix.h
r3292 r3293 73 73 74 74 // Setters 75 void SetColor ( const PulserColor_t color ) { fColor = color; } 76 75 77 void SetLambda ( const Float_t f ) { fLambda = f; } 76 78 void SetLambdaCheck ( const Float_t f ) { fLambdaCheck = f; } -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.h
r3292 r3293 44 44 public: 45 45 46 enum PulserColor_t { kEBlue, kEGreen, kEUV, kECT1 } ;47 48 private:49 50 PulserColor_t fColor;51 52 public:53 54 46 MCalibrationChargeCam(const char *name=NULL, const char *title=NULL); 55 47 ~MCalibrationChargeCam(); … … 59 51 60 52 // Setters 61 void SetColor( const PulserColor_t color ) { fColor = color; }62 53 void SetNumPixelsExcluded( const UInt_t n ) { fNumExcludedPixels = n; } 63 54 void SetGeomCam( const MGeomCam *geom) { fGeomCam = geom; } -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc
r3292 r3293 196 196 } 197 197 198 void MHCalibrationChargeBlindPix::SetSinglePheFitOK ( const Bool_t b=kTRUE)198 void MHCalibrationChargeBlindPix::SetSinglePheFitOK (const Bool_t b) 199 199 { 200 200 b ? SETBIT(fFlags,kSinglePheFitOK) : CLRBIT(fFlags,kSinglePheFitOK); 201 201 } 202 202 203 void MHCalibrationChargeBlindPix::SetPedestalFitOK( const Bool_t b=kTRUE)203 void MHCalibrationChargeBlindPix::SetPedestalFitOK(const Bool_t b) 204 204 { 205 205 b ? SETBIT(fFlags,kPedestalFitOK) : CLRBIT(fFlags,kPedestalFitOK);
Note:
See TracChangeset
for help on using the changeset viewer.