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