Ignore:
Timestamp:
02/09/04 16:06:32 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcalib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.cc

    r3061 r3071  
    3434#include "MHCalibrationBlindPixel.h"
    3535
     36#include <TH1.h>
     37
    3638#include "MLog.h"
    3739#include "MLogManip.h"
     
    5456  if (!fHist)
    5557    *fLog << warn << dbginf << " Could not create MHCalibrationBlindPixel " << endl;
     58
     59  fHSinglePheFADCSlices = new TH1I("HSinglePheFADCSlices","Summed FADC slices single phe events",30,0.5,30.5); 
    5660 
    5761  Clear();
     
    6165{
    6266  delete fHist;
     67  delete fHSinglePheFADCSlices;
    6368}
    6469
  • trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.h

    r3062 r3071  
    66#endif
    77
     8#ifndef MARS_MH
     9#include "MH.h"
     10#endif
     11
     12class TH1I;
    813class MCalibrationBlindPix : public MParContainer
    914{
     
    2732  Float_t fErrTime;             // The error of the mean arrival time after the fit
    2833 
     34  TH1I* fHSinglePheFADCSlices;
     35
    2936 
    3037public:
     
    5057  Float_t GetTime()      const    { return fTime;         }
    5158  Float_t GetErrTime()   const    { return fErrTime;      }
     59
     60  TH1I *GetSinglePheFADCSlices()    { return fHSinglePheFADCSlices;  }
    5261 
    5362  MHCalibrationBlindPixel *GetHist()     const  { return fHist;  }
Note: See TracChangeset for help on using the changeset viewer.