Class Reference for E1039 Core & Analysis Software
PHG4Hit.h
Go to the documentation of this file.
1 #ifndef PHG4Hit_H__
2 #define PHG4Hit_H__
3 
4 #include "PHG4HitDefs.h"
5 #include <phool/PHObject.h>
6 #include <cmath>
7 #include <climits>
8 
9 class PHG4Hit: public PHObject
10 {
11  public:
12  PHG4Hit() {}
13  virtual ~PHG4Hit() {}
14 
15  virtual void identify(std::ostream& os = std::cout) const;
16  virtual void Copy(PHG4Hit const &g4hit);
17  friend std::ostream &operator<<(std::ostream & stream, const PHG4Hit * hit);
18  virtual void Reset();
19 
20  // The indices here represent the entry and exit points of the particle
21  virtual float get_x(const int i) const {return NAN;}
22  virtual float get_y(const int i) const {return NAN;}
23  virtual float get_z(const int i) const {return NAN;}
24  virtual float get_px(const int i) const {return NAN;}
25  virtual float get_py(const int i) const {return NAN;}
26  virtual float get_pz(const int i) const {return NAN;}
27  virtual float get_local_x(const int i) const {return NAN;}
28  virtual float get_local_y(const int i) const {return NAN;}
29  virtual float get_local_z(const int i) const {return NAN;}
30  virtual float get_t(const int i) const {return NAN;}
31  virtual float get_edep() const {return NAN;}
32  virtual float get_eion() const {return NAN;}
33  virtual float get_light_yield() const {return NAN;}
34  virtual float get_path_length() const {return NAN;}
35  virtual unsigned int get_layer() const {return UINT_MAX;}
36  virtual PHG4HitDefs::keytype get_hit_id() const {return UINT_MAX;}
37  virtual int get_detid() const {return INT_MIN;}
38  virtual int get_shower_id() const {return INT_MIN;}
39  virtual int get_scint_id() const {return INT_MIN;}
40  virtual int get_row() const {return INT_MIN;}
41  virtual int get_trkid() const {return INT_MIN;}
42  virtual int get_strip_z_index() const {return INT_MIN;}
43  virtual int get_strip_y_index() const {return INT_MIN;}
44  virtual int get_ladder_z_index() const {return INT_MIN;}
45  virtual int get_ladder_phi_index() const {return INT_MIN;}
46  virtual int get_index_i() const {return INT_MIN;}
47  virtual int get_index_j() const {return INT_MIN;}
48  virtual int get_index_k() const {return INT_MIN;}
49  virtual int get_index_l() const {return INT_MIN;}
50  virtual int get_hit_type() const {return INT_MIN;}
51 
52  virtual void set_x(const int i, const float f) {return;}
53  virtual void set_y(const int i, const float f) {return;}
54  virtual void set_z(const int i, const float f) {return;}
55  virtual void set_px(const int i, const float f) {return;}
56  virtual void set_py(const int i, const float f) {return;}
57  virtual void set_pz(const int i, const float f) {return;}
58  virtual void set_local_x(const int i, const float f) {return;}
59  virtual void set_local_y(const int i, const float f) {return;}
60  virtual void set_local_z(const int i, const float f) {return;}
61  virtual void set_t(const int i, const float f) {return;}
62  virtual void set_edep(const float f) {return;}
63  virtual void set_eion(const float f) {return;}
64  virtual void set_light_yield(const float lightYield){return;}
65  virtual void set_path_length(const float pathLength){return;}
66  virtual void set_layer(const unsigned int i) {return;}
67  virtual void set_hit_id(const PHG4HitDefs::keytype i) {return;}
68  virtual void set_shower_id(const int i) {return;}
69  virtual void set_scint_id(const int i) {return;}
70  virtual void set_row(const int i) {return;}
71  virtual void set_trkid(const int i) {return;}
72  virtual void set_strip_z_index(const int i) {return;}
73  virtual void set_strip_y_index(const int i) {return;}
74  virtual void set_ladder_z_index(const int i) {return;}
75  virtual void set_ladder_phi_index(const int i) {return;}
76  virtual void set_index_i(const int i) {return;}
77  virtual void set_index_j(const int i) {return;}
78  virtual void set_index_k(const int i) {return;}
79  virtual void set_index_l(const int i) {return;}
80  virtual void set_hit_type(const int i) {return;}
81 
82  virtual float get_avg_x() const;
83  virtual float get_avg_y() const;
84  virtual float get_avg_z() const;
85  virtual float get_avg_t() const;
86 
87  virtual void print() const {std::cout<<"PHG4Hit base class - print() not implemented"<<std::endl;}
88 
89 
93  enum PROPERTY
94  {//
95 
96  //-- hit properties: 1 - 10 --
98  prop_eion = 1,
99 
102 
103  //-- track properties: 10 - 20 --
104 
106  prop_px_0 = 10,
107  prop_px_1 = 11,
108  prop_py_0 = 12,
109  prop_py_1 = 13,
110  prop_pz_0 = 14,
111  prop_pz_1 = 15,
112 
115 
123 
124  //-- detector specific IDs: 100+ --
125 
127  prop_layer = 101,
131  prop_row = 103,
132 
138 
139  // MAPS stuff
144 
148 
154 
157 
161 
163  prop_MAX_NUMBER = UCHAR_MAX
164  };
165 
167  {//
168  type_int = 1,
171  type_unknown = -1
172  };
173 
174  virtual bool has_property(const PROPERTY prop_id) const {return false;}
175  virtual float get_property_float(const PROPERTY prop_id) const {return NAN;}
176  virtual int get_property_int(const PROPERTY prop_id) const {return INT_MIN;}
177  virtual unsigned int get_property_uint(const PROPERTY prop_id) const {return UINT_MAX;}
178  virtual void set_property(const PROPERTY prop_id, const float value) {return;}
179  virtual void set_property(const PROPERTY prop_id, const int value) {return;}
180  virtual void set_property(const PROPERTY prop_id, const unsigned int value) {return;}
181  static std::pair<const std::string,PROPERTY_TYPE> get_property_info(PROPERTY prop_id);
182  static bool check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type);
183  static std::string get_property_type(const PROPERTY_TYPE prop_type);
184 
185  protected:
186  virtual unsigned int get_property_nocheck(const PROPERTY prop_id) const {return UINT_MAX;}
187  virtual void set_property_nocheck(const PROPERTY prop_id,const unsigned int) {return;}
188  ClassDef(PHG4Hit,1)
189 };
190 
191 
192 inline float PHG4Hit::get_avg_x() const { return 0.5*(get_x(0)+get_x(1)); }
193 inline float PHG4Hit::get_avg_y() const { return 0.5*(get_y(0)+get_y(1)); }
194 inline float PHG4Hit::get_avg_z() const { return 0.5*(get_z(0)+get_z(1)); }
195 inline float PHG4Hit::get_avg_t() const { return 0.5*(get_t(0)+get_t(1)); }
196 
197 
198 #endif
PROPERTY
Definition: PHG4Hit.h:94
@ prop_px_0
momentum
Definition: PHG4Hit.h:106
@ prop_path_length
pathlength
Definition: PHG4Hit.h:114
@ prop_strip_z_index
SVX stuff.
Definition: PHG4Hit.h:134
@ prop_py_1
Definition: PHG4Hit.h:109
@ prop_local_y_0
Definition: PHG4Hit.h:119
@ prop_hit_type
hit type
Definition: PHG4Hit.h:156
@ prop_ladder_phi_index
Definition: PHG4Hit.h:137
@ prop_stave_index
Definition: PHG4Hit.h:140
@ prop_module_index
Definition: PHG4Hit.h:142
@ prop_local_pos_y_1
Definition: PHG4Hit.h:159
@ prop_layer
layer ID
Definition: PHG4Hit.h:127
@ prop_row
row (mother volume or steel plate id)
Definition: PHG4Hit.h:131
@ prop_light_yield
for scintillation detectors, the amount of light produced
Definition: PHG4Hit.h:101
@ prop_half_stave_index
Definition: PHG4Hit.h:141
@ prop_local_pos_z_0
Definition: PHG4Hit.h:147
@ prop_local_pos_y_0
Definition: PHG4Hit.h:146
@ prop_index_j
Definition: PHG4Hit.h:151
@ prop_index_k
Definition: PHG4Hit.h:152
@ prop_local_x_0
local coordinate
Definition: PHG4Hit.h:117
@ prop_local_y_1
Definition: PHG4Hit.h:120
@ prop_px_1
Definition: PHG4Hit.h:107
@ prop_local_z_1
Definition: PHG4Hit.h:122
@ prop_local_pos_x_1
Definition: PHG4Hit.h:158
@ prop_local_pos_z_1
Definition: PHG4Hit.h:160
@ prop_local_z_0
Definition: PHG4Hit.h:121
@ prop_local_x_1
Definition: PHG4Hit.h:118
@ prop_chip_index
Definition: PHG4Hit.h:143
@ prop_local_pos_x_0
Definition: PHG4Hit.h:145
@ prop_eion
ionizing energy loss
Definition: PHG4Hit.h:98
@ prop_pz_0
Definition: PHG4Hit.h:110
@ prop_index_i
generic indexes
Definition: PHG4Hit.h:150
@ prop_pz_1
Definition: PHG4Hit.h:111
@ prop_index_l
Definition: PHG4Hit.h:153
@ prop_scint_id
scintillator ID
Definition: PHG4Hit.h:129
@ prop_py_0
Definition: PHG4Hit.h:108
@ prop_MAX_NUMBER
max limit in order to fit into 8 bit unsigned number
Definition: PHG4Hit.h:163
@ prop_strip_y_index
Definition: PHG4Hit.h:135
@ prop_ladder_z_index
Definition: PHG4Hit.h:136
virtual void print() const
Definition: PHG4Hit.h:87
virtual unsigned int get_layer() const
Definition: PHG4Hit.h:35
virtual float get_py(const int i) const
Definition: PHG4Hit.h:25
virtual void set_index_l(const int i)
Definition: PHG4Hit.h:79
virtual void set_local_y(const int i, const float f)
Definition: PHG4Hit.h:59
friend std::ostream & operator<<(std::ostream &stream, const PHG4Hit *hit)
Definition: PHG4Hit.cc:56
virtual void set_local_x(const int i, const float f)
Definition: PHG4Hit.h:58
virtual void set_property(const PROPERTY prop_id, const float value)
Definition: PHG4Hit.h:178
virtual int get_strip_z_index() const
Definition: PHG4Hit.h:42
virtual void set_layer(const unsigned int i)
Definition: PHG4Hit.h:66
virtual void set_index_k(const int i)
Definition: PHG4Hit.h:78
virtual void set_strip_y_index(const int i)
Definition: PHG4Hit.h:73
virtual void set_property_nocheck(const PROPERTY prop_id, const unsigned int)
Definition: PHG4Hit.h:187
static std::string get_property_type(const PROPERTY_TYPE prop_type)
Definition: PHG4Hit.cc:168
virtual float get_local_y(const int i) const
Definition: PHG4Hit.h:28
virtual void set_ladder_phi_index(const int i)
Definition: PHG4Hit.h:75
virtual float get_z(const int i) const
Definition: PHG4Hit.h:23
virtual float get_eion() const
Definition: PHG4Hit.h:32
virtual void set_property(const PROPERTY prop_id, const int value)
Definition: PHG4Hit.h:179
virtual void set_y(const int i, const float f)
Definition: PHG4Hit.h:53
virtual void set_local_z(const int i, const float f)
Definition: PHG4Hit.h:60
virtual void set_shower_id(const int i)
Definition: PHG4Hit.h:68
virtual void set_ladder_z_index(const int i)
Definition: PHG4Hit.h:74
virtual void set_light_yield(const float lightYield)
Definition: PHG4Hit.h:64
virtual ~PHG4Hit()
Definition: PHG4Hit.h:13
virtual int get_index_j() const
Definition: PHG4Hit.h:47
virtual float get_edep() const
Definition: PHG4Hit.h:31
virtual int get_row() const
Definition: PHG4Hit.h:40
virtual int get_shower_id() const
Definition: PHG4Hit.h:38
virtual void set_px(const int i, const float f)
Definition: PHG4Hit.h:55
virtual void set_py(const int i, const float f)
Definition: PHG4Hit.h:56
virtual void set_t(const int i, const float f)
Definition: PHG4Hit.h:61
virtual void set_pz(const int i, const float f)
Definition: PHG4Hit.h:57
virtual void set_eion(const float f)
Definition: PHG4Hit.h:63
static std::pair< const std::string, PROPERTY_TYPE > get_property_info(PROPERTY prop_id)
Definition: PHG4Hit.cc:70
PHG4Hit()
Definition: PHG4Hit.h:12
virtual void set_hit_id(const PHG4HitDefs::keytype i)
Definition: PHG4Hit.h:67
static bool check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type)
Definition: PHG4Hit.cc:157
virtual void Reset()
Clear Event.
Definition: PHG4Hit.cc:63
virtual float get_pz(const int i) const
Definition: PHG4Hit.h:26
virtual void set_strip_z_index(const int i)
Definition: PHG4Hit.h:72
virtual float get_t(const int i) const
Definition: PHG4Hit.h:30
virtual void set_row(const int i)
Definition: PHG4Hit.h:70
virtual int get_ladder_z_index() const
Definition: PHG4Hit.h:44
virtual float get_property_float(const PROPERTY prop_id) const
Definition: PHG4Hit.h:175
virtual float get_path_length() const
Definition: PHG4Hit.h:34
virtual void set_hit_type(const int i)
Definition: PHG4Hit.h:80
virtual void set_z(const int i, const float f)
Definition: PHG4Hit.h:54
virtual float get_avg_t() const
Definition: PHG4Hit.h:195
virtual void set_index_i(const int i)
Definition: PHG4Hit.h:76
virtual int get_index_i() const
Definition: PHG4Hit.h:46
virtual float get_local_z(const int i) const
Definition: PHG4Hit.h:29
virtual bool has_property(const PROPERTY prop_id) const
Definition: PHG4Hit.h:174
virtual float get_px(const int i) const
Definition: PHG4Hit.h:24
virtual float get_light_yield() const
Definition: PHG4Hit.h:33
virtual int get_strip_y_index() const
Definition: PHG4Hit.h:43
virtual void set_x(const int i, const float f)
Definition: PHG4Hit.h:52
PROPERTY_TYPE
Definition: PHG4Hit.h:167
@ type_float
Definition: PHG4Hit.h:170
@ type_unknown
Definition: PHG4Hit.h:171
@ type_uint
Definition: PHG4Hit.h:169
@ type_int
Definition: PHG4Hit.h:168
virtual PHG4HitDefs::keytype get_hit_id() const
Definition: PHG4Hit.h:36
virtual float get_y(const int i) const
Definition: PHG4Hit.h:22
virtual float get_local_x(const int i) const
Definition: PHG4Hit.h:27
virtual float get_x(const int i) const
Definition: PHG4Hit.h:21
virtual void Copy(PHG4Hit const &g4hit)
virtual int get_scint_id() const
Definition: PHG4Hit.h:39
virtual void set_trkid(const int i)
Definition: PHG4Hit.h:71
virtual float get_avg_z() const
Definition: PHG4Hit.h:194
virtual int get_property_int(const PROPERTY prop_id) const
Definition: PHG4Hit.h:176
virtual unsigned int get_property_uint(const PROPERTY prop_id) const
Definition: PHG4Hit.h:177
virtual void set_scint_id(const int i)
Definition: PHG4Hit.h:69
virtual int get_index_l() const
Definition: PHG4Hit.h:49
virtual int get_detid() const
Definition: PHG4Hit.h:37
virtual unsigned int get_property_nocheck(const PROPERTY prop_id) const
Definition: PHG4Hit.h:186
virtual void set_edep(const float f)
Definition: PHG4Hit.h:62
virtual void set_property(const PROPERTY prop_id, const unsigned int value)
Definition: PHG4Hit.h:180
virtual float get_avg_y() const
Definition: PHG4Hit.h:193
virtual int get_ladder_phi_index() const
Definition: PHG4Hit.h:45
virtual int get_index_k() const
Definition: PHG4Hit.h:48
virtual void set_path_length(const float pathLength)
Definition: PHG4Hit.h:65
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Hit.cc:35
virtual void set_index_j(const int i)
Definition: PHG4Hit.h:77
virtual float get_avg_x() const
Definition: PHG4Hit.h:192
virtual int get_trkid() const
Definition: PHG4Hit.h:41
virtual int get_hit_type() const
Definition: PHG4Hit.h:50
unsigned int keytype
Definition: PHG4HitDefs.h:8