Changeset 3272


Ignore:
Timestamp:
02/24/04 04:56:21 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3270 r3272  
    1414   * mcalib/MExtractBlindPixel.[h,cc]
    1515     - included storage of pedestal
     16
     17   * mcalib/MHGausEvents.[h,cc]
     18     - make the fit functions protected
    1619
    1720
  • trunk/MagicSoft/Mars/mcalib/MHGausEvents.cc

    r3264 r3272  
    100100//
    101101MHGausEvents::MHGausEvents(const char *name, const char *title)
    102     : fFGausFit(NULL), fFExpFit(NULL),
    103       fHPowerProbability(NULL),
     102    : fHPowerProbability(NULL),
    104103      fPowerSpectrum(NULL),
    105104      fGraphEvents(NULL), fGraphPowerSpectrum(NULL),
    106       fHGausHist(),
    107       fEvents(0)
     105      fHGausHist(), fEvents(0),
     106      fFGausFit(NULL), fFExpFit(NULL)
    108107{
    109108
  • trunk/MagicSoft/Mars/mcalib/MHGausEvents.h

    r3264 r3272  
    2929  Float_t  fEventFrequency;            // The event frequency in Hertz (to be set)
    3030 
    31   TF1     *fFGausFit;                  // Gauss fit for fHGausHist
    32   TF1     *fFExpFit;                   // Exponential fit for FHPowerProbability
    33  
    3431  TH1I    *fHPowerProbability;         // Fourier transform of fEvents projected on y-axis
    3532  TArrayF *fPowerSpectrum;             // Fourier transform of fEvents
     
    5754  TArrayF fEvents;                     // Array which holds the entries of GausHist
    5855
     56  TF1     *fFGausFit;                  // Gauss fit for fHGausHist
     57  TF1     *fFExpFit;                   // Exponential fit for FHPowerProbability
     58 
    5959  Float_t  fProbLimit;                 // Probability limit for judgement if fit is OK
    6060  Int_t    fNDFLimit;                  // NDF limit for judgement if fit is OK
Note: See TracChangeset for help on using the changeset viewer.