NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
MaxEvent.h
1 #ifndef MAXEVENT_H_
2 #define MAXEVENT_H_
3 #include "TGWindow.h"
4 #include "TGFrame.h"
5 #include "TGTextEntry.h"
6 #include "TGNumberEntry.h"
7 #include "TGLabel.h"
8 
9 class MaxEvent:public TGTransientFrame
10 {
11 public:
12  MaxEvent (const TGWindow * p, const TGWindow * main);
13  virtual ~ MaxEvent ();
14 private:
15  TGHorizontalFrame * mn, *buttons;
16  TGVerticalFrame *mn_vert;
17  TGVerticalFrame *column1, *column2;
18  TGNumberEntry *numericMod;
19  TGTextButton *LoadButton, *CancelButton;
20  TGButton *ApplyButton;
21  //, *ExitButton;
22  Long_t module_number1;
23  bool Load_Once;
24  Bool_t ProcessMessage (Long_t msg, Long_t parm1, Long_t parm2);
25  int load_info ();
26  int change_values ();
27  TGNumberEntryField *maxEvent[3];
28 };
29 
30 #endif /*MAXEVENT_H_*/
Definition: MaxEvent.h:9