source: trunk/MagicSoft/Mars/mhflux/MHDisp.h@ 7173

Last change on this file since 7173 was 7173, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 877 bytes
Line 
1#ifndef MARS_MHDisp
2#define MARS_MHDisp
3
4#ifndef MARS_MHFalseSource
5#include "MHFalseSource.h"
6#endif
7
8class MParList;
9class MHillasExt;
10class MParameterD;
11
12class MHDisp : public MHFalseSource
13{
14private:
15 MHillasExt *fHilExt; //!
16 MParameterD *fDisp; //!
17
18 Double_t fM3lCut; //!
19 Double_t fXi; //!
20 Double_t fXiTheta; //!
21
22 //Bool_t fIsWobble;
23
24 // MHDisp
25 Double_t GetOffSignal(TH1 &h) const;
26
27public:
28 MHDisp(const char *name=NULL, const char *title=NULL);
29
30 // MH
31 Bool_t SetupFill(const MParList *pList);
32 Bool_t Fill(const MParContainer *par, const Stat_t w=1);
33
34 // TObject
35 void Paint(Option_t *o="");
36 void Draw(Option_t *o="");
37
38 // MParContainer
39 //Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
40
41 ClassDef(MHDisp, 1) //3D-histogram in alpha, x and y
42};
43
44#endif
Note: See TracBrowser for help on using the repository browser.