Changeset 6800 for trunk


Ignore:
Timestamp:
03/09/05 16:36:40 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6799 r6800  
    3030     - modify writing of MCalibrationPulseTimeCam to disk in order to
    3131       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
    3237
    3338
  • trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc

    r6304 r6800  
    126126//
    127127MHGausEvents::MHGausEvents(const char *name, const char *title)
    128     : fEventFrequency(0),
     128    : fEventFrequency(0), fFlags(0),
    129129      fHPowerProbability(NULL),
    130130      fPowerSpectrum(NULL),
     
    272272    }
    273273}
     274
     275
    274276
    275277// -----------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mhcalib/MHGausEvents.h

    r6772 r6800  
    4040  Int_t    fPowerProbabilityBins;      // Bins for the projected power spectrum
    4141 
    42   TH1I    *fHPowerProbability;         // Fourier transform of fEvents projected on y-axis
    43   MArrayF *fPowerSpectrum;             // Fourier transform of fEvents
     42  TH1I    *fHPowerProbability;         //! Fourier transform of fEvents projected on y-axis
     43  MArrayF *fPowerSpectrum;             //! Fourier transform of fEvents
    4444
    4545  enum  { kGausFitOK,
     
    5252  TF1     *fFExpFit;                   // Exponential fit for FHPowerProbability
    5353  Axis_t   fFirst;                     // Lower histogram edge  for fHGausHist (used by InitBins())
    54   TGraph  *fGraphEvents;               // TGraph to display the event array
    55   TGraph  *fGraphPowerSpectrum;        // TGraph to display the power spectrum array
     54  TGraph  *fGraphEvents;               //! TGraph to display the event array
     55  TGraph  *fGraphPowerSpectrum;        //! TGraph to display the power spectrum array
    5656  TH1F     fHGausHist;                 // Histogram to hold the Gaussian distribution
    5757  Axis_t   fLast;                      // Upper histogram edge  for fHGausHist (used by InitBins())
     
    166166  void  SimulateGausEvents(const Float_t mean, const Float_t sigma, const Int_t nevts=4096);     // *MENU*
    167167
    168   ClassDef(MHGausEvents, 2) // Base class for events with Gaussian distributed values
     168  ClassDef(MHGausEvents, 3) // Base class for events with Gaussian distributed values
    169169};
    170170
Note: See TracChangeset for help on using the changeset viewer.