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