NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
CFD.h
1 #ifndef CFD_H_
2 #define CFD_H_
3 #include "Table.h"
4 #include "pixie16app_export.h"
5 
6 class CFD: public Table
7 {
8 public:
9  CFD(const TGWindow * p, const TGWindow * main,
10  /*char **/string name, int columns=4, int rows=16, int NumModules=13);
11  virtual ~CFD();
12  Bool_t ProcessMessage (Long_t msg, Long_t parm1, Long_t parm2);
13  int change_values (Long_t mod);
14  int load_info (Long_t mod);
15  void SetModuleNumber(int moduleNr) {
16  modNumber = (short)moduleNr;
17  numericMod->SetIntNumber(modNumber);
18  };
19  void setDisable(bool value);
20 
21  short int chanNumber;
22  short int modNumber;
23  TGNumberEntry* chanCopy;
24  bool Load_Once;
25  char tmp[10];
26  float cfddelay,cfdscale, cfdthresh;
27 
28 };
29 
30 #endif /*CFD_H_*/
void setDisable(bool value)
Definition: CFD.cpp:228
Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
Definition: CFD.cpp:76
Definition: Table.h:14
Definition: CFD.h:6