Changeset 5864 for trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.h
- Timestamp:
- 01/16/05 21:46:43 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.h
r5863 r5864 41 41 private: 42 42 43 static const Int_t fgPulserFrequency; //! The default for fPulserFrequency (now set to: 500) 44 static const Float_t fgProbLimit; //! The default for fProbLimit (now set to: 0.0001) 45 46 static const TString gsHistName; //! Default Histogram names 47 static const TString gsHistTitle; //! Default Histogram titles 48 static const TString gsHistXTitle; //! Default Histogram x-axis titles 49 static const TString gsHistYTitle; //! Default Histogram y-axis titles 43 static const Int_t fgPulserFrequency; //! The default for fPulserFrequency (now set to: 500) 44 static const Float_t fgProbLimit; //! The default for fProbLimit (now set to: 0.0001) 45 static const Float_t fgOverflowLimit; //! The default for fOverflowLimit (now at: 0.005) 46 47 static const TString gsHistName; //! Default Histogram names 48 static const TString gsHistTitle; //! Default Histogram titles 49 static const TString gsHistXTitle; //! Default Histogram x-axis titles 50 static const TString gsHistYTitle; //! Default Histogram y-axis titles 50 51 51 52 protected: … … 56 57 57 58 Float_t fProbLimit; // Limit for acceptance of probability of Gauss-Fit 59 Float_t fOverflowLimit; // Part of maximum allowed overflow events 58 60 59 61 TString fHistName; //! Histogram names … … 64 66 Float_t fNumHiGainSaturationLimit; // Rel. amount sat. higain FADC slices until pixel is called saturated 65 67 Float_t fNumLoGainSaturationLimit; // Rel. amount sat. logain FADC slices until pixel is called saturated 66 Float_t fNumOverflowLimit; // Part of maximum allowed overflow events67 68 68 69 MArrayI fRunNumbers; // Numbers of runs used … … 111 112 virtual void InitHiGainArrays( const Int_t npix, const Int_t nareas, const Int_t nsectors ); 112 113 virtual void InitLoGainArrays( const Int_t npix, const Int_t nareas, const Int_t nsectors ); 113 114 114 115 virtual void ResetHistTitles(); 115 116 … … 138 139 MBadPixelsPix::UncalibratedType_t osctyp); 139 140 140 void InitHists ( MHCalibrationPix &hist, MBadPixelsPix &bad, const Int_t i); 141 141 void InitHists ( MHCalibrationPix &hist, MBadPixelsPix &bad, const Int_t i); 142 Bool_t InitCams ( MParList *plist, const TString name ); 143 142 144 Bool_t IsAverageing () const { return TESTBIT(fFlags,kAverageing); } 143 145 Bool_t IsDebug () const { return TESTBIT(fFlags,kDebug); } … … 218 220 void SetNumLoGainSaturationLimit( const Float_t lim ) { fNumLoGainSaturationLimit = lim; } 219 221 void SetNumHiGainSaturationLimit( const Float_t lim ) { fNumHiGainSaturationLimit = lim; } 220 void Set NumOverflowLimit ( const Float_t lim ) { fNumOverflowLimit = lim; }221 void SetPulserFrequency ( const Int_t f=fgPulserFrequency) { fPulserFrequency = f;}222 void SetOverflowLimit ( const Float_t f=fgOverflowLimit ) { fOverflowLimit = f; } 223 void SetPulserFrequency ( const Int_t i=fgPulserFrequency ) { fPulserFrequency = i; } 222 224 223 225 ClassDef(MHCalibrationCam, 4) // Base Histogram class for Calibration Camera
Note:
See TracChangeset
for help on using the changeset viewer.