Changeset 3272
- Timestamp:
- 02/24/04 04:56:21 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3270 r3272 14 14 * mcalib/MExtractBlindPixel.[h,cc] 15 15 - included storage of pedestal 16 17 * mcalib/MHGausEvents.[h,cc] 18 - make the fit functions protected 16 19 17 20 -
trunk/MagicSoft/Mars/mcalib/MHGausEvents.cc
r3264 r3272 100 100 // 101 101 MHGausEvents::MHGausEvents(const char *name, const char *title) 102 : fFGausFit(NULL), fFExpFit(NULL), 103 fHPowerProbability(NULL), 102 : fHPowerProbability(NULL), 104 103 fPowerSpectrum(NULL), 105 104 fGraphEvents(NULL), fGraphPowerSpectrum(NULL), 106 fHGausHist(), 107 f Events(0)105 fHGausHist(), fEvents(0), 106 fFGausFit(NULL), fFExpFit(NULL) 108 107 { 109 108 -
trunk/MagicSoft/Mars/mcalib/MHGausEvents.h
r3264 r3272 29 29 Float_t fEventFrequency; // The event frequency in Hertz (to be set) 30 30 31 TF1 *fFGausFit; // Gauss fit for fHGausHist32 TF1 *fFExpFit; // Exponential fit for FHPowerProbability33 34 31 TH1I *fHPowerProbability; // Fourier transform of fEvents projected on y-axis 35 32 TArrayF *fPowerSpectrum; // Fourier transform of fEvents … … 57 54 TArrayF fEvents; // Array which holds the entries of GausHist 58 55 56 TF1 *fFGausFit; // Gauss fit for fHGausHist 57 TF1 *fFExpFit; // Exponential fit for FHPowerProbability 58 59 59 Float_t fProbLimit; // Probability limit for judgement if fit is OK 60 60 Int_t fNDFLimit; // NDF limit for judgement if fit is OK
Note:
See TracChangeset
for help on using the changeset viewer.