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

Last change on this file since 7138 was 7114, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 673 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
22public:
23 MHDisp(const char *name=NULL, const char *title=NULL);
24
25 // MH
26 Bool_t SetupFill(const MParList *pList);
27 Bool_t Fill(const MParContainer *par, const Stat_t w=1);
28
29 void Paint(Option_t *o="");
30 void Draw(Option_t *o="");
31
32 ClassDef(MHDisp, 1) //3D-histogram in alpha, x and y
33};
34
35#endif
Note: See TracBrowser for help on using the repository browser.