Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FCAL.h
Go to the documentation of this file.
1 // $Id$
2 //
3 // File: FCAL.h
4 // Created: Fri Jun 24 15:26:54 EDT 2011
5 // Creator: davidl (on Linux ifarm1101 2.6.18-128.7.1.el5 #1 SMP x86_64)
6 //
7 
8 #ifndef _FCAL_
9 #define _FCAL_
10 
11 #include <TObject.h>
12 
13 
14 class FCAL:public TObject{
15  public:
16 
17  // ctor
18  FCAL(void){}
19 
20  // dtor
21  ~FCAL(void){}
22 
23  // Clear
24  void Clear(void){
25  L1a_fired = false;
26  L1b_fired = false;
27 
28  row = 0;
29  column = 0;
30  }
31 
32  bool L1a_fired;
33  bool L1b_fired;
34 
35  unsigned int row;
36  unsigned int column;
37 
38  private:
39  ClassDef(FCAL,1);
40 };
41 
42 
43 
44 #endif // _FCAL_
45 
FCAL(void)
Definition: FCAL.h:18
bool L1a_fired
Definition: FCAL.h:32
~FCAL(void)
Definition: FCAL.h:21
Definition: FCAL.h:14
unsigned int row
Definition: FCAL.h:35
void Clear(void)
Definition: FCAL.h:24
unsigned int column
Definition: FCAL.h:36
ClassDef(FCAL, 1)
bool L1b_fired
Definition: FCAL.h:33