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

Last change on this file since 1214 was 1210, checked in by tbretz, 24 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 637 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 *fWidth;
15 TH1F *fLength;
16
17public:
18 MHHillas(const char *name=NULL, const char *title=NULL);
19 ~MHHillas();
20
21 Bool_t SetupFill(const MParList *pList);
22 Bool_t Fill(const MParContainer *par);
23
24 TH1F *GetHistWidth() { return fWidth; }
25 TH1F *GetHistLength() { return fLength; }
26
27 void Draw(Option_t *opt=NULL);
28 TObject *DrawClone(Option_t *opt=NULL) const;
29
30 ClassDef(MHHillas, 1) // Container which holds histograms for length and width
31};
32
33#endif
Note: See TracBrowser for help on using the repository browser.