Changeset 8929 for trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.h
- Timestamp:
- 06/08/08 13:55:36 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.h
r7818 r8929 50 50 UInt_t fFirstBin; // For bin for fit 51 51 52 Double_t fTotalTime; //[s] Total time accumulated from run-header 53 54 // MHEffectiveOnTime 52 55 Bool_t FitH(TH1D *h, Double_t *res, Bool_t paint=kFALSE) const; 53 56 void FitThetaBins(); … … 60 63 void PrintStatistics(); 61 64 65 // MH 62 66 Bool_t SetupFill(const MParList *pList); 67 Bool_t ReInit(MParList *pList); 63 68 Bool_t Fill(const MParContainer *par, const Stat_t w=1); 64 69 Bool_t Finalize(); 65 70 71 // MParContainer 66 72 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); 67 73 … … 69 75 MHEffectiveOnTime(const char *name=NULL, const char *title=NULL); 70 76 77 // Setter 71 78 void SetNumEvents(Int_t i) { fNumEvents=i; } 72 79 void SetFirstBin(Int_t i) { fFirstBin=i; } 80 81 // Getter 82 Double_t GetTotalTime() const { return fTotalTime; } 73 83 74 84 const TH1D &GetHEffOnTheta() const { return fHThetaEffOn; } … … 77 87 const TH2D &GetH2DeltaT() const { return fH2DeltaT; } 78 88 89 // TObject 79 90 void Draw(Option_t *option=""); 80 91 void Paint(Option_t *opt=""); 81 92 82 ClassDef(MHEffectiveOnTime, 2) // Histogram to determin effective On-Time vs Time and Zenith Angle93 ClassDef(MHEffectiveOnTime, 3) // Histogram to determin effective On-Time vs Time and Zenith Angle 83 94 }; 84 95
Note:
See TracChangeset
for help on using the changeset viewer.