source: trunk/MagicSoft/Mars/mhflux/MHPhi.h@ 7404

Last change on this file since 7404 was 7251, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 808 bytes
Line 
1#ifndef MARS_MHPhi
2#define MARS_MHPhi
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7#ifndef ROOT_TH1
8#include <TH1.h>
9#endif
10
11class MHillas;
12class MSrcPosCam;
13class MParameterD;
14
15class MHPhi : public MH
16{
17private:
18 TH1D fHPhi;
19
20 MHillas *fHillas; //!
21 MSrcPosCam *fSrcPos; //!
22 MParameterD *fDisp; //!
23
24 Double_t fConvMm2Deg; //!
25
26 Int_t fNumBinsSignal;
27 Float_t fThetaCut;
28 Float_t fDistSrc;
29 //Bool_t fOnOffMode;
30
31 //Bool_t fIsOffLoop; //!
32
33public:
34 MHPhi(const char *name=NULL, const char *title=NULL);
35
36 Bool_t SetupFill(const MParList *plist);
37 Bool_t Fill(const MParContainer *par, const Stat_t w=1);
38
39 void Draw(Option_t *opt="");
40 void Paint(Option_t *opt="");
41
42 ClassDef(MHPhi, 1) // Histogram to display information about rate
43};
44
45#endif
46
47
Note: See TracBrowser for help on using the repository browser.