Class Reference for E1039 Core & Analysis Software
PHG4Hitv1.h
Go to the documentation of this file.
1 #ifndef PHG4Hitv1_H__
2 #define PHG4Hitv1_H__
3 
4 #include "PHG4Hit.h"
5 #include "PHG4HitDefs.h"
6 
7 #ifdef __CINT__
8 #include <stdint.h>
9 #else
10 #include <cstdint>
11 #endif
12 #include <iostream>
13 #include <map>
14 
15 class PHG4Hitv1 : public PHG4Hit
16 {
17  public:
19  explicit PHG4Hitv1(const PHG4Hit &g4hit);
20  virtual ~PHG4Hitv1() {}
21  void identify(std::ostream& os = std::cout) const;
22  void Reset();
23 
24  // The indices here represent the entry and exit points of the particle
25  float get_x(const int i) const {return x[i];}
26  float get_y(const int i) const {return y[i];}
27  float get_z(const int i) const {return z[i];}
28  float get_t(const int i) const {return t[i];}
29  float get_edep() const {return edep;}
31  int get_detid() const;
32  int get_shower_id() const {return showerid;}
33  int get_trkid() const {return trackid;}
34 
35  void set_x(const int i, const float f) {x[i]=f;}
36  void set_y(const int i, const float f) {y[i]=f;}
37  void set_z(const int i, const float f) {z[i]=f;}
38  void set_t(const int i, const float f) {t[i]=f;}
39  void set_edep(const float f) {edep = f;}
41  void set_shower_id(const int i) {showerid = i;}
42  void set_trkid(const int i) {trackid=i;}
43 
44  virtual void print() const;
45 
46  bool has_property(const PROPERTY prop_id) const;
47  float get_property_float(const PROPERTY prop_id) const;
48  int get_property_int(const PROPERTY prop_id) const;
49  unsigned int get_property_uint(const PROPERTY prop_id) const;
50  void set_property(const PROPERTY prop_id, const float value);
51  void set_property(const PROPERTY prop_id, const int value);
52  void set_property(const PROPERTY prop_id, const unsigned int value);
53 
54  virtual float get_px(const int i) const;
55  virtual float get_py(const int i) const;
56  virtual float get_pz(const int i) const;
57  virtual float get_local_x(const int i) const;
58  virtual float get_local_y(const int i) const;
59  virtual float get_local_z(const int i) const;
60  virtual float get_eion() const {return get_property_float(prop_eion);}
61  virtual float get_light_yield() const {return get_property_float(prop_light_yield);}
62  virtual float get_path_length() const {return get_property_float(prop_path_length);}
63  virtual unsigned int get_layer() const {return get_property_uint(prop_layer);}
64  virtual int get_scint_id() const {return get_property_int(prop_scint_id);}
65  virtual int get_row() const {return get_property_int(prop_row);}
66  virtual int get_strip_z_index() const {return get_property_int(prop_strip_z_index);}
67  virtual int get_strip_y_index() const {return get_property_int(prop_strip_y_index);}
70  virtual int get_index_i() const {return get_property_int(prop_index_i);}
71  virtual int get_index_j() const {return get_property_int(prop_index_j);}
72  virtual int get_index_k() const {return get_property_int(prop_index_k);}
73  virtual int get_index_l() const {return get_property_int(prop_index_l);}
74  virtual int get_hit_type() const {return get_property_int(prop_hit_type);}
75 
76  virtual void set_px(const int i, const float f);
77  virtual void set_py(const int i, const float f);
78  virtual void set_pz(const int i, const float f);
79  virtual void set_local_x(const int i, const float f);
80  virtual void set_local_y(const int i, const float f);
81  virtual void set_local_z(const int i, const float f);
82  virtual void set_eion(const float f) {set_property(prop_eion,f);}
83  virtual void set_light_yield(const float f) {set_property(prop_light_yield,f);}
84  virtual void set_path_length(const float f) {set_property(prop_path_length,f);}
85  virtual void set_layer(const unsigned int i) {set_property(prop_layer,i);}
86  virtual void set_scint_id(const int i) {set_property(prop_scint_id,i);}
87  virtual void set_row(const int i) {set_property(prop_row,i);}
88  virtual void set_strip_z_index(const int i) {set_property(prop_strip_z_index,i);}
89  virtual void set_strip_y_index(const int i) {set_property(prop_strip_y_index,i);}
90  virtual void set_ladder_z_index(const int i) {set_property(prop_ladder_z_index,i);}
92  virtual void set_index_i(const int i) {set_property(prop_index_i,i);}
93  virtual void set_index_j(const int i) {set_property(prop_index_j,i);}
94  virtual void set_index_k(const int i) {set_property(prop_index_k,i);}
95  virtual void set_index_l(const int i) {set_property(prop_index_l,i);}
96  virtual void set_hit_type(const int i) {set_property(prop_hit_type,i);}
97 
98  protected:
99  unsigned int get_property_nocheck(const PROPERTY prop_id) const;
100  void set_property_nocheck(const PROPERTY prop_id,const unsigned int ui) {prop_map[prop_id]=ui;}
101  // Store both the entry and exit points of the particle
102  // Remember, particles do not always enter on the inner edge!
103  float x[2];
104  float y[2];
105  float z[2];
106  float t[2];
108  int trackid;
109  int showerid;
110  float edep;
111 
113  typedef uint8_t prop_id_t;
114  typedef uint32_t prop_storage_t;
115  typedef std::map<prop_id_t, prop_storage_t> prop_map_t;
116 
118  union u_property{
119  float fdata;
120  int32_t idata;
121  uint32_t uidata;
122 
123  u_property(int32_t in): idata(in) {}
124  u_property(uint32_t in): uidata(in) {}
125  u_property(float in): fdata(in) {}
127 
129  };
130 
133 
134  ClassDef(PHG4Hitv1,2)
135 };
136 
137 #endif
PROPERTY
Definition: PHG4Hit.h:94
@ prop_path_length
pathlength
Definition: PHG4Hit.h:114
@ prop_strip_z_index
SVX stuff.
Definition: PHG4Hit.h:134
@ prop_hit_type
hit type
Definition: PHG4Hit.h:156
@ prop_ladder_phi_index
Definition: PHG4Hit.h:137
@ 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_index_j
Definition: PHG4Hit.h:151
@ prop_index_k
Definition: PHG4Hit.h:152
@ prop_eion
ionizing energy loss
Definition: PHG4Hit.h:98
@ prop_index_i
generic indexes
Definition: PHG4Hit.h:150
@ prop_index_l
Definition: PHG4Hit.h:153
@ prop_scint_id
scintillator ID
Definition: PHG4Hit.h:129
@ prop_strip_y_index
Definition: PHG4Hit.h:135
@ prop_ladder_z_index
Definition: PHG4Hit.h:136
virtual int get_strip_y_index() const
Definition: PHG4Hitv1.h:67
int get_property_int(const PROPERTY prop_id) const
Definition: PHG4Hitv1.cc:113
float t[2]
Definition: PHG4Hitv1.h:106
float get_z(const int i) const
Definition: PHG4Hitv1.h:27
virtual int get_index_j() const
Definition: PHG4Hitv1.h:71
virtual float get_local_z(const int i) const
Definition: PHG4Hitv1.cc:329
void set_y(const int i, const float f)
Definition: PHG4Hitv1.h:36
float get_y(const int i) const
Definition: PHG4Hitv1.h:26
virtual void set_strip_z_index(const int i)
Definition: PHG4Hitv1.h:88
virtual void set_py(const int i, const float f)
Definition: PHG4Hitv1.cc:264
virtual void set_strip_y_index(const int i)
Definition: PHG4Hitv1.h:89
virtual void set_scint_id(const int i)
Definition: PHG4Hitv1.h:86
void set_shower_id(const int i)
Definition: PHG4Hitv1.h:41
void set_x(const int i, const float f)
Definition: PHG4Hitv1.h:35
float get_t(const int i) const
Definition: PHG4Hitv1.h:28
int get_detid() const
Definition: PHG4Hitv1.cc:49
virtual void set_index_l(const int i)
Definition: PHG4Hitv1.h:95
void set_property(const PROPERTY prop_id, const float value)
Definition: PHG4Hitv1.cc:149
virtual int get_row() const
Definition: PHG4Hitv1.h:65
virtual void set_index_j(const int i)
Definition: PHG4Hitv1.h:93
float z[2]
Definition: PHG4Hitv1.h:105
virtual float get_path_length() const
Definition: PHG4Hitv1.h:62
virtual float get_local_y(const int i) const
Definition: PHG4Hitv1.cc:314
virtual void set_eion(const float f)
Definition: PHG4Hitv1.h:82
int get_trkid() const
Definition: PHG4Hitv1.h:33
PHG4HitDefs::keytype get_hit_id() const
Definition: PHG4Hitv1.h:30
uint8_t prop_id_t
storage types for additional property
Definition: PHG4Hitv1.h:113
float get_edep() const
Definition: PHG4Hitv1.h:29
virtual int get_index_l() const
Definition: PHG4Hitv1.h:73
uint32_t prop_storage_t
Definition: PHG4Hitv1.h:114
virtual void set_local_z(const int i, const float f)
Definition: PHG4Hitv1.cc:378
int get_shower_id() const
Definition: PHG4Hitv1.h:32
void set_trkid(const int i)
Definition: PHG4Hitv1.h:42
virtual void set_light_yield(const float f)
Definition: PHG4Hitv1.h:83
virtual unsigned int get_layer() const
Definition: PHG4Hitv1.h:63
float x[2]
Definition: PHG4Hitv1.h:103
std::map< prop_id_t, prop_storage_t > prop_map_t
Definition: PHG4Hitv1.h:115
virtual ~PHG4Hitv1()
Definition: PHG4Hitv1.h:20
void set_property_nocheck(const PROPERTY prop_id, const unsigned int ui)
Definition: PHG4Hitv1.h:100
void set_edep(const float f)
Definition: PHG4Hitv1.h:39
virtual float get_local_x(const int i) const
Definition: PHG4Hitv1.cc:299
void set_hit_id(const PHG4HitDefs::keytype i)
Definition: PHG4Hitv1.h:40
virtual void set_layer(const unsigned int i)
Definition: PHG4Hitv1.h:85
virtual void set_index_k(const int i)
Definition: PHG4Hitv1.h:94
PHG4HitDefs::keytype hitid
Definition: PHG4Hitv1.h:107
virtual void set_index_i(const int i)
Definition: PHG4Hitv1.h:92
unsigned int get_property_uint(const PROPERTY prop_id) const
Definition: PHG4Hitv1.cc:131
unsigned int get_property_nocheck(const PROPERTY prop_id) const
Definition: PHG4Hitv1.cc:191
virtual void set_px(const int i, const float f)
Definition: PHG4Hitv1.cc:247
virtual float get_py(const int i) const
Definition: PHG4Hitv1.cc:217
int showerid
Definition: PHG4Hitv1.h:109
virtual void set_ladder_z_index(const int i)
Definition: PHG4Hitv1.h:90
virtual void set_local_y(const int i, const float f)
Definition: PHG4Hitv1.cc:361
bool has_property(const PROPERTY prop_id) const
Definition: PHG4Hitv1.cc:88
void set_t(const int i, const float f)
Definition: PHG4Hitv1.h:38
virtual int get_index_k() const
Definition: PHG4Hitv1.h:72
virtual float get_light_yield() const
Definition: PHG4Hitv1.h:61
virtual int get_strip_z_index() const
Definition: PHG4Hitv1.h:66
virtual int get_ladder_z_index() const
Definition: PHG4Hitv1.h:68
void Reset()
Clear Event.
Definition: PHG4Hitv1.cc:33
int trackid
Definition: PHG4Hitv1.h:108
float get_x(const int i) const
Definition: PHG4Hitv1.h:25
float y[2]
Definition: PHG4Hitv1.h:104
virtual int get_ladder_phi_index() const
Definition: PHG4Hitv1.h:69
void identify(std::ostream &os=std::cout) const
Definition: PHG4Hitv1.cc:395
prop_map_t prop_map
container for additional property
Definition: PHG4Hitv1.h:132
float get_property_float(const PROPERTY prop_id) const
Definition: PHG4Hitv1.cc:95
virtual void print() const
Definition: PHG4Hitv1.cc:58
virtual void set_ladder_phi_index(const int i)
Definition: PHG4Hitv1.h:91
virtual void set_path_length(const float f)
Definition: PHG4Hitv1.h:84
virtual void set_hit_type(const int i)
Definition: PHG4Hitv1.h:96
virtual float get_eion() const
Definition: PHG4Hitv1.h:60
virtual int get_hit_type() const
Definition: PHG4Hitv1.h:74
virtual float get_pz(const int i) const
Definition: PHG4Hitv1.cc:232
virtual void set_local_x(const int i, const float f)
Definition: PHG4Hitv1.cc:344
virtual void set_row(const int i)
Definition: PHG4Hitv1.h:87
float edep
Definition: PHG4Hitv1.h:110
virtual int get_scint_id() const
Definition: PHG4Hitv1.h:64
virtual int get_index_i() const
Definition: PHG4Hitv1.h:70
virtual float get_px(const int i) const
Definition: PHG4Hitv1.cc:202
virtual void set_pz(const int i, const float f)
Definition: PHG4Hitv1.cc:281
void set_z(const int i, const float f)
Definition: PHG4Hitv1.h:37
unsigned int keytype
Definition: PHG4HitDefs.h:8
convert between 32bit inputs and storage type prop_storage_t
Definition: PHG4Hitv1.h:118
u_property(int32_t in)
Definition: PHG4Hitv1.h:123
prop_storage_t get_storage() const
Definition: PHG4Hitv1.h:128
u_property(uint32_t in)
Definition: PHG4Hitv1.h:124
u_property(float in)
Definition: PHG4Hitv1.h:125