source: trunk/MagicSoft/Mars/mhist/MHEffOnTimeTheta.h@ 1992

Last change on this file since 1992 was 1992, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 722 bytes
Line 
1#ifndef MARS_MHEffOnTimeTheta
2#define MARS_MHEffOnTimeTheta
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 MHEffOnTimeTheta : public MH
16{
17private:
18 TH1D fHEffOn;
19 TH1D fHChi2;
20 TH1D fHN0del;
21 TH1D fHLambda;
22
23public:
24 MHEffOnTimeTheta(const char *name=NULL, const char *title=NULL);
25
26 Bool_t SetupFill(const MParList *pList);
27
28 const TH1D *GetHist() { return &fHEffOn; }
29 const TH1D *GetHist() const { return &fHEffOn; }
30
31 void Calc(TH2D *hist);
32
33 void Draw(Option_t *option="");
34 TObject *DrawClone(Option_t *option="") const;
35
36 ClassDef(MHEffOnTimeTheta, 0) //1D-plot of Delta t vs. Theta
37};
38
39#endif
40
41
Note: See TracBrowser for help on using the repository browser.