- Timestamp:
- 09/09/04 17:52:51 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4906 r4907 120 120 mjobs/MJCalibrateSignal.[h,cc]: 121 121 - added option to process monte carlo files 122 123 * mhist/MHEffectiveOnTime.[h,cc]: 124 - added a histogram taking the on-time vs time 125 - fixed handling of Draw/Project/Paint 122 126 123 127 -
trunk/MagicSoft/Mars/mhist/MHEffectiveOnTime.h
r4889 r4907 33 33 MParameterDerr *fParam; //! 34 34 35 TH2D fHTimeDiff; 36 TH1D fHEffOn; 35 TH2D fHDeltaT; 36 TH1D fHEffOnTheta; 37 TH1D fHEffOnTime; 37 38 TH1D fHChi2; 38 39 TH1D fHProb; … … 44 45 Int_t fInterval; 45 46 47 const TString fNameProjDeltaT; //! This should make sure, that gROOT doen't confuse the projection with something else 48 const TString fNameProjTheta; //! This should make sure, that gROOT doen't confuse the projection with something else 49 46 50 Bool_t FitH(TH1D *h, Double_t *res) const; 47 51 void FitThetaBins(); 52 void FillTimeBin(Double_t val, Double_t err); 48 53 void Calc(); 49 54 … … 57 62 Bool_t Finalize(); 58 63 59 const TH2D *GetHist() { return &fHTimeDiff; } 60 const TH2D *GetHist() const { return &fHTimeDiff; } 61 62 TH1 *GetHistByName(const TString name) { return &fHTimeDiff; } 64 const TH2D *GetHist() { return &fHDeltaT; } 65 const TH2D *GetHist() const { return &fHDeltaT; } 63 66 64 67 void Draw(Option_t *option="");
Note:
See TracChangeset
for help on using the changeset viewer.