Ignore:
Timestamp:
05/10/05 12:13:12 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.h

    r6771 r7005  
    4040 
    4141private:
     42  static const Double_t fgLowerFitLimitHiGain; //! The default for fLowerFitLimitHiGain (now at: 0)
     43  static const Double_t fgUpperFitLimitHiGain; //! The default for fUpperFitLimitHiGain (now at: 0)
     44  static const Double_t fgLowerFitLimitLoGain; //! The default for fLowerFitLimitLoGain (now at: 0)
     45  static const Double_t fgUpperFitLimitLoGain; //! The default for fUpperFitLimitLoGain (now at: 0)
    4246
    4347  static const Int_t   fgPulserFrequency;  //! The default for fPulserFrequency (now set to: 500)
     
    5862  Float_t fProbLimit;                     // Limit for acceptance of probability of Gauss-Fit
    5963  Float_t fOverflowLimit;                 // Part of maximum allowed overflow events
     64
     65  Double_t fLowerFitLimitHiGain;          // Lower limit for the fit range for the hi-gain hist
     66  Double_t fUpperFitLimitHiGain;          // Upper limit for the fit range for the hi-gain hist
     67  Double_t fLowerFitLimitLoGain;          // Lower limit for the fit range for the lo-gain hist
     68  Double_t fUpperFitLimitLoGain;          // Upper limit for the fit range for the lo-gain hist
     69
     70  Bool_t   fIsHiGainFitRanges;            // Are high-gain fit ranges defined?
     71  Bool_t   fIsLoGainFitRanges;            // Are low-gain fit ranges defined?
    6072 
    6173  TString fHistName;                      //! Histogram names
     
    211223  void SetHistXTitle( const char *name )  { fHistXTitle = name; }
    212224  void SetHistYTitle( const char *name )  { fHistYTitle = name; }
     225
     226  void SetLowerFitLimitHiGain( const Double_t d=fgLowerFitLimitHiGain)  {  fLowerFitLimitHiGain = d;  }
     227  void SetUpperFitLimitHiGain( const Double_t d=fgUpperFitLimitHiGain)  {  fUpperFitLimitHiGain = d;  }
     228  void SetLowerFitLimitLoGain( const Double_t d=fgLowerFitLimitLoGain)  {  fLowerFitLimitLoGain = d;  }
     229  void SetUpperFitLimitLoGain( const Double_t d=fgUpperFitLimitLoGain)  {  fUpperFitLimitLoGain = d;  }
    213230   
    214231  void SetNbins                   ( const Int_t  i )       { fNbins   = i; }
     
    223240  void SetPulserFrequency      ( const Int_t   i=fgPulserFrequency )   { fPulserFrequency  = i; }
    224241 
    225   ClassDef(MHCalibrationCam, 4) // Base Histogram class for Calibration Camera
     242  ClassDef(MHCalibrationCam, 5) // Base Histogram class for Calibration Camera
    226243};
    227244
Note: See TracChangeset for help on using the changeset viewer.