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