source: trunk/MagicSoft/Mars/mmain/MMonteCarlo.h@ 6676

Last change on this file since 6676 was 1668, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 782 bytes
Line 
1#ifndef MARS_MMonteCarlo
2#define MARS_MMonteCarlo
3
4#ifndef MARS_MBrowser
5#include "MBrowser.h"
6#endif
7
8class TGTextEntry;
9class TGRadioButton;
10
11class MMonteCarlo : public MBrowser
12{
13private:
14 TGRadioButton *fRadioButton1;
15 TGRadioButton *fRadioButton2;
16 TGRadioButton *fRadioButton3;
17
18 TGTextEntry *fNumEntry;
19
20 Int_t GetDim() const;
21
22 void CalculateCollectionArea();
23 void CalculateTriggerRate();
24 void CalculateThreshold();
25
26 void AddButtons();
27 void AddSetupTab();
28
29public:
30 MMonteCarlo(/*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(MMonteCarlo, 0) // GUI: The 'monte-carlo' browser
36};
37
38#endif
39
40
Note: See TracBrowser for help on using the repository browser.