source: tags/Mars-V0.3/mmain/MMonteCarlo.h

Last change on this file was 765, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 590 bytes
Line 
1#ifndef MMONTECARLO_H
2#define MMONTECARLO_H
3
4#ifndef MAGIC_H
5#include "MAGIC.h"
6#endif
7
8#ifndef ROOT_TGFrame
9#include <TGFrame.h>
10#endif
11#ifndef MBROWSER_H
12#include "MBrowser.h"
13#endif
14
15class TGTextButton;
16
17class MMonteCarlo : public MBrowser
18{
19private:
20
21 TGTextButton *fButAction;
22
23public:
24 MMonteCarlo(const TGWindow *main=NULL, const TGWindow *p=NULL,
25 const UInt_t w=500, const UInt_t h=500) ;
26
27 ~MMonteCarlo();
28
29 Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
30
31 ClassDef(MMonteCarlo, 0) // GUI: The 'monte-carlo' window
32};
33
34#endif
35
36
Note: See TracBrowser for help on using the repository browser.