Line | |
---|
1 | #ifndef MARS_MAnalysis
|
---|
2 | #define MARS_MAnalysis
|
---|
3 |
|
---|
4 | #ifndef MARS_MBrowser
|
---|
5 | #include "MBrowser.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class TGTextEntry;
|
---|
9 | class TGCheckButton;
|
---|
10 |
|
---|
11 | class MAnalysis : public MBrowser
|
---|
12 | {
|
---|
13 | private:
|
---|
14 | TGCheckButton *fCheckButton1;
|
---|
15 | TGCheckButton *fCheckButton2;
|
---|
16 |
|
---|
17 | TGTextEntry *fNumEntry1;
|
---|
18 | TGTextEntry *fNumEntry2;
|
---|
19 |
|
---|
20 | void CalculateHillas();
|
---|
21 |
|
---|
22 | void AddButtons();
|
---|
23 | void AddSetupTab();
|
---|
24 |
|
---|
25 | public:
|
---|
26 | MAnalysis(const TGWindow *main=NULL, const TGWindow *p=NULL,
|
---|
27 | const UInt_t w=500, const UInt_t h=500) ;
|
---|
28 |
|
---|
29 | Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
|
---|
30 |
|
---|
31 | ClassDef(MAnalysis, 0) // GUI: The 'Analysis' browser.
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif
|
---|
35 |
|
---|
36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.