source: tags/Mars-V0.6/mhist/MHHillas.h

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