- Timestamp:
- 03/09/05 16:36:40 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6799 r6800 30 30 - modify writing of MCalibrationPulseTimeCam to disk in order to 31 31 avoid program crash in the destructor of MJCalibrateSignal 32 33 * mhcalib/MHGausEvents.h 34 - take fGraphEvents, fGraphPowerSpectrum, fHPowerProbability and 35 fPowerSpectrum out of the streamer. 36 - intialize fFlags to 0 32 37 33 38 -
trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc
r6304 r6800 126 126 // 127 127 MHGausEvents::MHGausEvents(const char *name, const char *title) 128 : fEventFrequency(0), 128 : fEventFrequency(0), fFlags(0), 129 129 fHPowerProbability(NULL), 130 130 fPowerSpectrum(NULL), … … 272 272 } 273 273 } 274 275 274 276 275 277 // ----------------------------------------------------------------------------- -
trunk/MagicSoft/Mars/mhcalib/MHGausEvents.h
r6772 r6800 40 40 Int_t fPowerProbabilityBins; // Bins for the projected power spectrum 41 41 42 TH1I *fHPowerProbability; // Fourier transform of fEvents projected on y-axis43 MArrayF *fPowerSpectrum; // Fourier transform of fEvents42 TH1I *fHPowerProbability; //! Fourier transform of fEvents projected on y-axis 43 MArrayF *fPowerSpectrum; //! Fourier transform of fEvents 44 44 45 45 enum { kGausFitOK, … … 52 52 TF1 *fFExpFit; // Exponential fit for FHPowerProbability 53 53 Axis_t fFirst; // Lower histogram edge for fHGausHist (used by InitBins()) 54 TGraph *fGraphEvents; // TGraph to display the event array55 TGraph *fGraphPowerSpectrum; // TGraph to display the power spectrum array54 TGraph *fGraphEvents; //! TGraph to display the event array 55 TGraph *fGraphPowerSpectrum; //! TGraph to display the power spectrum array 56 56 TH1F fHGausHist; // Histogram to hold the Gaussian distribution 57 57 Axis_t fLast; // Upper histogram edge for fHGausHist (used by InitBins()) … … 166 166 void SimulateGausEvents(const Float_t mean, const Float_t sigma, const Int_t nevts=4096); // *MENU* 167 167 168 ClassDef(MHGausEvents, 2) // Base class for events with Gaussian distributed values168 ClassDef(MHGausEvents, 3) // Base class for events with Gaussian distributed values 169 169 }; 170 170
Note:
See TracChangeset
for help on using the changeset viewer.