- Timestamp:
- 03/31/04 10:52:35 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargePINDiode.h
r3266 r3617 13 13 private: 14 14 15 MCalibrationChargePINDiode *fPINDiode; //! Storage container of the results 15 static const Int_t fgChargeNbins; // Default for fChargeNBins (now set to: 200 ) 16 static const Axis_t fgChargeFirst; // Default for fChargeFirst (now set to: -0.5 ) 17 static const Axis_t fgChargeLast; // Default for fChargeLast (now set to: 199.5 ) 18 static const Int_t fgRmsChargeNbins; // Default for fChargeNBins (now set to: 100 ) 19 static const Axis_t fgRmsChargeFirst; // Default for fChargeFirst (now set to: 0. ) 20 static const Axis_t fgRmsChargeLast; // Default for fChargeLast (now set to: 100. ) 21 static const Int_t fgAbsTimeNbins; // Default for fChargeNBins (now set to: 30 ) 22 static const Axis_t fgAbsTimeFirst; // Default for fChargeFirst (now set to: -0.5 ) 23 static const Axis_t fgAbsTimeLast; // Default for fChargeLast (now set to: 29.5 ) 16 24 17 TH1F fHRmsCharge; // Variance of summed FADC slices25 MCalibrationChargePINDiode *fPINDiode; //! Storage container of the results 18 26 19 static const Int_t fgChargeNbins; 20 static const Axis_t fgChargeFirst; 21 static const Axis_t fgChargeLast; 27 TH1F fHRmsCharge; // Histogram containing Variance of summed FADC slices 22 28 23 static const Int_t fgRmsChargeNbins;24 static const Axis_t fgRmsChargeFirst;25 static const Axis_t fgRmsChargeLast;29 Int_t fRmsChargeNbins; // Number of bins used for the fHRmsCharge 30 Axis_t fRmsChargeFirst; // Lower bound bin used for the fHRmsCharge 31 Axis_t fRmsChargeLast; // Upper bound bin used for the fHRmsCharge 26 32 27 static const Int_t fgAbsTimeNbins; 28 static const Axis_t fgAbsTimeFirst; 29 static const Axis_t fgAbsTimeLast; 33 Float_t fRmsChargeMean; // Mean of the Gauss fit 34 Float_t fRmsChargeSigma; // Sigma of the Gauss fit 35 Float_t fRmsChargeMeanErr; // Error of the mean of the Gauss fit 36 Float_t fRmsChargeSigmaErr; // Error of the sigma of the Gauss fit 30 37 31 Int_t fRmsChargeNbins;32 Axis_t fRmsChargeFirst;33 Axis_t fRmsChargeLast;34 35 Float_t fRmsChargeMean;36 Float_t fRmsChargeMeanErr;37 Float_t fRmsChargeSigma;38 Float_t fRmsChargeSigmaErr;39 40 Float_t fExtractSlices;41 42 38 public: 43 39 … … 45 41 ~MHCalibrationChargePINDiode(){} 46 42 47 void Clear(Option_t *o="");48 void Init();49 50 43 Bool_t SetupFill(const MParList *pList); 51 44 Bool_t ReInit ( MParList *pList);
Note:
See TracChangeset
for help on using the changeset viewer.