- Timestamp:
- 02/09/04 16:06:32 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3070 r3071 4 4 5 5 -*-*- END OF LINE -*-*- 6 2004/02/09: Markus Gaug 7 8 * mcalib/MCalibrationBlindPix.[h,cc] 9 - added histogram to display the average in FADC slices of all 10 single and double phe events 11 12 13 6 14 2004/02/09: Thomas Bretz 7 15 -
trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.cc
r3061 r3071 34 34 #include "MHCalibrationBlindPixel.h" 35 35 36 #include <TH1.h> 37 36 38 #include "MLog.h" 37 39 #include "MLogManip.h" … … 54 56 if (!fHist) 55 57 *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); 56 60 57 61 Clear(); … … 61 65 { 62 66 delete fHist; 67 delete fHSinglePheFADCSlices; 63 68 } 64 69 -
trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.h
r3062 r3071 6 6 #endif 7 7 8 #ifndef MARS_MH 9 #include "MH.h" 10 #endif 11 12 class TH1I; 8 13 class MCalibrationBlindPix : public MParContainer 9 14 { … … 27 32 Float_t fErrTime; // The error of the mean arrival time after the fit 28 33 34 TH1I* fHSinglePheFADCSlices; 35 29 36 30 37 public: … … 50 57 Float_t GetTime() const { return fTime; } 51 58 Float_t GetErrTime() const { return fErrTime; } 59 60 TH1I *GetSinglePheFADCSlices() { return fHSinglePheFADCSlices; } 52 61 53 62 MHCalibrationBlindPixel *GetHist() const { return fHist; }
Note:
See TracChangeset
for help on using the changeset viewer.