source: trunk/MagicSoft/Mars/mhist/MHHillas.h@ 712

Last change on this file since 712 was 712, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 726 bytes
Line 
1#ifndef MHHILLAS_H
2#define MHHILLAS_H
3
4#ifndef MAGIC_H
5#include "MAGIC.h"
6#endif
7
8#ifndef MPARCONTAINER_H
9#include "MParContainer.h"
10#endif
11
12class TH1F;
13class MHillas;
14
15class MHHillas : public MParContainer
16{
17private:
18 TH1F *fAlpha;
19 TH1F *fWidth;
20 TH1F *fLength;
21 TH1F *fDist;
22
23public:
24 MHHillas(const char *name=NULL, const char *title=NULL);
25 ~MHHillas();
26
27 void Fill(MHillas *par);
28
29 TH1F *GetHistAlpha() { return fAlpha; }
30 TH1F *GetHistWidth() { return fWidth; }
31 TH1F *GetHistLength() { return fLength; }
32 TH1F *GetHistDist() { return fDist; }
33
34 void Draw(Option_t *opt=NULL);
35
36 ClassDef(MHHillas, 1) // Container which holds hostograms for the Hillas parameters
37};
38
39#endif
40
Note: See TracBrowser for help on using the repository browser.