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