source: trunk/MagicSoft/Mars/mhist/MHAlphaEnergyTheta.h@ 1889

Last change on this file since 1889 was 1668, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 955 bytes
Line 
1#ifndef MARS_MHAlphaEnergyTheta
2#define MARS_MHAlphaEnergyTheta
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7
8#ifndef ROOT_TH3
9#include "TH3.h"
10#endif
11
12#ifndef ROOT_TH2
13#include "TH2.h"
14#endif
15
16class MMcEvt;
17class MHillasSrc;
18class MEnergyEst;
19class TH2D;
20class MParList;
21
22
23class MHAlphaEnergyTheta : public MH
24{
25private:
26 MMcEvt *fMcEvt; //!
27 MHillasSrc *fHillas; //!
28 MEnergyEst *fEnergy; //!
29
30 TH3D fHist;
31
32public:
33 MHAlphaEnergyTheta(const char *name=NULL, const char *title=NULL);
34
35 virtual Bool_t SetupFill(const MParList *pList);
36 virtual Bool_t Fill(const MParContainer *par);
37
38 const TH3D *GetHist() { return &fHist; }
39 const TH3D *GetHist() const { return &fHist; }
40
41 TH1 *GetHistByName(const TString name) { return &fHist; }
42
43 void Draw(Option_t *option="");
44 TObject *DrawClone(Option_t *option="") const;
45
46 ClassDef(MHAlphaEnergyTheta, 0) //3D-histogram in alpha, Energy and theta
47};
48
49#endif
50
51
52
53
54
Note: See TracBrowser for help on using the repository browser.