Class Reference for E1039 Core & Analysis Software
PHG4Hit.cc
Go to the documentation of this file.
1 #include "PHG4Hit.h"
2 
3 #include <cstdlib>
4 
5 using namespace std;
6 
8 
9 void
10 PHG4Hit::Copy(PHG4Hit const &g4hit)
11 {
12  for (int i =0; i<2; i++)
13  {
14  set_x(i,g4hit.get_x(i));
15  set_y(i,g4hit.get_y(i));
16  set_z(i,g4hit.get_z(i));
17  set_t(i,g4hit.get_t(i));
18  }
19  set_hit_id(g4hit.get_hit_id());
20  set_trkid(g4hit.get_trkid());
21  set_edep(g4hit.get_edep());
22  for (unsigned char ic = 0; ic < UCHAR_MAX; ic++)
23  {
24  PROPERTY prop_id = static_cast<PHG4Hit::PROPERTY> (ic);
25  if (g4hit.has_property(prop_id))
26  {
27  set_property_nocheck(prop_id,g4hit.get_property_nocheck(prop_id));
28  }
29  }
30  set_hit_type(g4hit.get_hit_type());
31 }
32 
33 
34 void
35 PHG4Hit::identify(ostream& os) const
36 {
37  cout << "Class " << this->ClassName() << endl;
38  cout << "x0: " << get_x(0)
39  << ", y0: " << get_y(0)
40  << ", z0: " << get_z(0)
41  << ", t0: " << get_t(0) << endl;
42  cout << "x1: " << get_x(1)
43  << ", y1: " << get_y(1)
44  << ", z1: " << get_z(1)
45  << ", t1: " << get_t(1) << endl;
46  cout << "trackid: " << get_trkid() << ", edep: " << get_edep() << endl;
47  cout << "strip_z_index: " << get_strip_z_index() << ", strip_y_index: " << get_strip_y_index() << endl;
48  cout << "ladder_z_index: " << get_ladder_z_index() << ", ladder_phi_index: " << get_ladder_phi_index() << endl;
49  cout << "stave_index: " << get_property_int(prop_stave_index) << " half_stave_index " << get_property_int(prop_half_stave_index) << endl;
50  cout << "module_index: " << get_property_int(prop_module_index) << " chip_index " << get_property_int(prop_chip_index) << endl;
51  cout << "layer id: " << get_layer() << ", scint_id: " << get_scint_id() << endl;
52  cout << "hit type: " << get_hit_type() << endl;
53  return;
54 }
55 
56 ostream& operator<<(ostream& stream, const PHG4Hit * hit){
57  stream <<endl<< "(x,y,z) = "<< "("<<hit->get_avg_x()<<", "<<hit->get_avg_y()<<", "<<hit->get_avg_z()<<")"<<endl;
58  stream << "trackid: " << hit->get_trkid()<<" hitid: "<<hit->get_hit_id()<<" layer: "<<hit->get_layer()<<endl;
59  return stream;
60 }
61 
62 void
64 {
65  cout << "Reset not implemented by daughter class" << endl;
66  return;
67 }
68 
69 std::pair<const std::string,PHG4Hit::PROPERTY_TYPE>
71 {
72  switch (prop_id)
73  {
74  case prop_eion:
75  return make_pair("ionizing energy loss",PHG4Hit::type_float);
76  case prop_light_yield:
77  return make_pair("light yield",PHG4Hit::type_float);
78  case prop_px_0:
79  return make_pair("px in",PHG4Hit::type_float);
80  case prop_px_1:
81  return make_pair("px out",PHG4Hit::type_float);
82  case prop_py_0:
83  return make_pair("py in",PHG4Hit::type_float);
84  case prop_py_1:
85  return make_pair("py out",PHG4Hit::type_float);
86  case prop_pz_0:
87  return make_pair("pz in",PHG4Hit::type_float);
88  case prop_pz_1:
89  return make_pair("pz out",PHG4Hit::type_float);
90  case prop_local_x_0:
91  return make_pair("local x in",PHG4Hit::type_float);
92  case prop_local_x_1:
93  return make_pair("local x out",PHG4Hit::type_float);
94  case prop_local_y_0:
95  return make_pair("local y in",PHG4Hit::type_float);
96  case prop_local_y_1:
97  return make_pair("local y out",PHG4Hit::type_float);
98  case prop_local_z_0:
99  return make_pair("local z in",PHG4Hit::type_float);
100  case prop_local_z_1:
101  return make_pair("local z out",PHG4Hit::type_float);
102  case prop_path_length:
103  return make_pair("pathlength",PHG4Hit::type_float);
104  case prop_layer:
105  return make_pair("layer ID",PHG4Hit::type_uint);
106  case prop_scint_id:
107  return make_pair("scintillator ID",PHG4Hit::type_int);
108  case prop_row:
109  return make_pair("row",PHG4Hit::type_int);
110  case prop_strip_z_index:
111  return make_pair("strip z index",PHG4Hit::type_int);
112  case prop_strip_y_index:
113  return make_pair("strip y index",PHG4Hit::type_int);
114  case prop_ladder_z_index:
115  return make_pair("ladder z index",PHG4Hit::type_int);
116  case prop_ladder_phi_index:
117  return make_pair("ladder phi index",PHG4Hit::type_int);
118  case prop_index_i:
119  return make_pair("generic index i",PHG4Hit::type_int);
120  case prop_index_j:
121  return make_pair("generic index j",PHG4Hit::type_int);
122  case prop_index_k:
123  return make_pair("generic index k",PHG4Hit::type_int);
124  case prop_index_l:
125  return make_pair("generic index l",PHG4Hit::type_int);
126  case prop_stave_index:
127  return make_pair("stave index",PHG4Hit::type_int);
128  case prop_half_stave_index:
129  return make_pair("half stave index",PHG4Hit::type_int);
130  case prop_module_index:
131  return make_pair("module index",PHG4Hit::type_int);
132  case prop_chip_index:
133  return make_pair("chip index",PHG4Hit::type_int);
134  case prop_local_pos_x_0:
135  return make_pair("local x pos in",PHG4Hit::type_float);
136  case prop_local_pos_y_0:
137  return make_pair("local y pos in",PHG4Hit::type_float);
138  case prop_local_pos_z_0:
139  return make_pair("local z pos in",PHG4Hit::type_float);
140  case prop_hit_type:
141  return make_pair("hit type",PHG4Hit::type_int);
142  case prop_local_pos_x_1:
143  return make_pair("local x pos out",PHG4Hit::type_float);
144  case prop_local_pos_y_1:
145  return make_pair("local y pos out",PHG4Hit::type_float);
146  case prop_local_pos_z_1:
147  return make_pair("local z pos out",PHG4Hit::type_float);
148 
149  default:
150  cout << "PHG4Hit::get_property_info - Fatal Error - unknown index " << prop_id << endl;
151  exit(1);
152  }
153 }
154 
155 
156 bool
157 PHG4Hit::check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type)
158 {
159  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
160  if (property_info.second != prop_type)
161  {
162  return false;
163  }
164  return true;
165 }
166 
167 string
169 {
170  switch(prop_type)
171  {
172  case type_int:
173  return "int";
174  case type_uint:
175  return "unsigned int";
176  case type_float:
177  return "float";
178  default:
179  return "unkown";
180  }
181 }
ClassImp(PHG4Hit) void PHG4Hit
Definition: PHG4Hit.cc:7
ostream & operator<<(ostream &stream, const PHG4Hit *hit)
Definition: PHG4Hit.cc:56
PROPERTY
Definition: PHG4Hit.h:94
virtual unsigned int get_layer() const
Definition: PHG4Hit.h:35
static std::string get_property_type(const PROPERTY_TYPE prop_type)
Definition: PHG4Hit.cc:168
virtual float get_z(const int i) const
Definition: PHG4Hit.h:23
virtual float get_edep() const
Definition: PHG4Hit.h:31
static std::pair< const std::string, PROPERTY_TYPE > get_property_info(PROPERTY prop_id)
Definition: PHG4Hit.cc:70
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_t(const int i) const
Definition: PHG4Hit.h:30
virtual bool has_property(const PROPERTY prop_id) const
Definition: PHG4Hit.h:174
PROPERTY_TYPE
Definition: PHG4Hit.h:167
@ type_float
Definition: PHG4Hit.h:170
@ 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_x(const int i) const
Definition: PHG4Hit.h:21
virtual void Copy(PHG4Hit const &g4hit)
virtual float get_avg_z() const
Definition: PHG4Hit.h:194
virtual unsigned int get_property_nocheck(const PROPERTY prop_id) const
Definition: PHG4Hit.h:186
virtual float get_avg_y() const
Definition: PHG4Hit.h:193
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Hit.cc:35
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