source: trunk/MagicSoft/Mars/mmain/MAnalysis.h@ 1038

Last change on this file since 1038 was 1021, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 664 bytes
Line 
1#ifndef MARS_MAnalysis
2#define MARS_MAnalysis
3
4#ifndef MARS_MBrowser
5#include "MBrowser.h"
6#endif
7
8class TGTextEntry;
9class TGCheckButton;
10
11class MAnalysis : public MBrowser
12{
13private:
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
25public:
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.