NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
ExpertMod.h
1 #ifndef EXPERTMOD_H_
2 #define EXPERTMOD_H_
3 #include "TGWindow.h"
4 #include "TGFrame.h"
5 #include "TGComboBox.h"
6 #include "TGNumberEntry.h"
7 #include "TG3DLine.h"
8 #include "TGLabel.h"
9 #include "pixie16app_export.h"
10 #include <iostream>
11 using namespace std;
12 
13 class ExpertMod:public TGTransientFrame
14 {
15 public:
16  ExpertMod(const TGWindow * p, const TGWindow * main,/*char **/string name,int NumModules);
17  virtual ~ExpertMod();
18  Bool_t ProcessMessage (Long_t msg, Long_t parm1, Long_t parm2);
19  TGVerticalFrame* mn_vert;
20  TGComboBox *lstBox;
21  TGNumberEntry *numericMod;
22  int numModules;
23  TGHorizontalFrame* Buttons ;
24  TGNumberEntryField *NumEntry;
25  short int modNumber;
26  bool Load_Once;
27  int change_values (Long_t mod, int param);
28  int load_info (Long_t mod, int param);
29  enum Commands
30  {
31  LOAD,
32  APPLY,
33  CANCEL,
34  MODNUMBER,
35  COPYBUTTON
36  };
37 };
38 
39 #endif /*EXPERTMOD_H_*/
Definition: ddaschannelDictionary.cpp:37
Definition: ExpertMod.h:13