Class Reference for E1039 Core & Analysis Software
PHG4HitEval.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef PHG4HITEVAL_H_
12 #define PHG4HITEVAL_H_
13 
14 #include "PHG4Hitv1.h"
15 
19 class PHG4HitEval : public PHG4Hitv1
20 {
21 public:
22  PHG4HitEval();
23 
24  PHG4HitEval(const PHG4Hit& g4hit);
25 
26  virtual
27  ~PHG4HitEval();
28 
29  virtual void Copy(PHG4Hit const &g4hit);
30 
31  float
32  get_eion() const
33  {
34  return eion;
35  }
36  void
37  set_eion(const float f)
38  {
39  eion = f;
40  }
41 
42  int
43  get_scint_id() const
44  {
45  return scint_id;
46  }
47 
48  void
49  set_scint_id(const int i)
50  {
51  scint_id = i;
52  }
53 
54  float
56  {
57  return light_yield;
58  }
59 
60  void
61  set_light_yield(float lightYield)
62  {
63  light_yield = lightYield;
64  }
65 
66  float
68  {
69  return path_length;
70  }
71 
72  void
73  set_path_length(float pathLength)
74  {
75  path_length = pathLength;
76  }
77 
78 protected:
79 
80  float eion;
81 
82  int scint_id;
83 
85  float light_yield;
86 
88  float path_length;
89 
90 ClassDef(PHG4HitEval,1)
91 };
92 
93 #endif /* PHG4HITEVAL_H_ */
PHG4HitEval for evaluating PHG4Hitv1 in CINT readable evaluation trees.
Definition: PHG4HitEval.h:20
float get_path_length() const
Definition: PHG4HitEval.h:67
float get_eion() const
Definition: PHG4HitEval.h:32
virtual void Copy(PHG4Hit const &g4hit)
Definition: PHG4HitEval.cc:32
void set_eion(const float f)
Definition: PHG4HitEval.h:37
float get_light_yield() const
Definition: PHG4HitEval.h:55
float eion
Definition: PHG4HitEval.h:80
int get_scint_id() const
Definition: PHG4HitEval.h:43
void set_light_yield(float lightYield)
Definition: PHG4HitEval.h:61
void set_scint_id(const int i)
Definition: PHG4HitEval.h:49
float light_yield
a number proportional to the scintillation light yield.
Definition: PHG4HitEval.h:85
float path_length
path length of the track to the hit
Definition: PHG4HitEval.h:88
void set_path_length(float pathLength)
Definition: PHG4HitEval.h:73
virtual ~PHG4HitEval()
Definition: PHG4HitEval.cc:21