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