source: trunk/MagicSoft/Mars/mhist/MHEffOnTimeTime.h@ 1604

Last change on this file since 1604 was 1294, checked in by wittek, 22 years ago
*** empty log message ***
File size: 774 bytes
Line 
1#ifndef MARS_MHEffOnTimeTime
2#define MARS_MHEffOnTimeTime
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7#ifndef ROOT_TH1
8#include "TH1.h"
9#endif
10
11class MTime;
12class TH2D;
13class MParList;
14
15class MHEffOnTimeTime : public MH
16{
17private:
18 TH1D fHEffOn;
19 TH1D fHChi2;
20 TH1D fHLambda;
21 TH1D fHN0del;
22
23public:
24 MHEffOnTimeTime(const char *name=NULL, const char *title=NULL);
25
26 virtual Bool_t SetupFill(const MParList *pList);
27 virtual Bool_t Fill(const MParContainer *par);
28
29 const TH1D *GetHist() { return &fHEffOn; }
30 const TH1D *GetHist() const { return &fHEffOn; }
31
32 void Calc(TH2D *hist);
33
34 void Draw(Option_t *option="");
35 TObject *DrawClone(Option_t *option="") const;
36
37 ClassDef(MHEffOnTimeTime, 1) //1D-plot of Delta t vs. time
38};
39
40#endif
41
Note: See TracBrowser for help on using the repository browser.