Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FDC_cathode.h
Go to the documentation of this file.
1 // $Id$
2 //
3 // File: FDC_cathode.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 _FDC_cathode_
9 #define _FDC_cathode_
10 
11 #include <TObject.h>
12 
13 
14 class FDC_cathode:public TObject{
15  public:
16 
17  // ctor
18  FDC_cathode(void){}
19 
20  // dtor
21  ~FDC_cathode(void){}
22 
23  // Clear
24  void Clear(void){
25  L1a_fired = false;
26  L1b_fired = false;
27 
28  gPlane = 0;
29  element = 0;
30  }
31 
32  bool L1a_fired;
33  bool L1b_fired;
34 
35  unsigned int gPlane;
36  unsigned int element;
37 
38  private:
40 };
41 
42 
43 
44 #endif // _FDC_cathode_
45 
ClassDef(FDC_cathode, 1)
bool L1a_fired
Definition: FDC_cathode.h:32
~FDC_cathode(void)
Definition: FDC_cathode.h:21
unsigned int gPlane
Definition: FDC_cathode.h:35
FDC_cathode(void)
Definition: FDC_cathode.h:18
unsigned int element
Definition: FDC_cathode.h:36
void Clear(void)
Definition: FDC_cathode.h:24
bool L1b_fired
Definition: FDC_cathode.h:33