Class Reference for E1039 Core & Analysis Software
PHG4Cell.cc
Go to the documentation of this file.
1 #include "PHG4Cell.h"
2 
3 #include <cstdlib>
4 
5 using namespace std;
6 
7 void
8 PHG4Cell::Copy(PHG4Cell const &g4cell)
9 {
10  set_cellid(g4cell.get_cellid());
11  for (unsigned char ic = 0; ic < UCHAR_MAX; ic++)
12  {
13  PROPERTY prop_id = static_cast<PHG4Cell::PROPERTY> (ic);
14  if (g4cell.has_property(prop_id))
15  {
16  set_property_nocheck(prop_id,g4cell.get_property_nocheck(prop_id));
17  }
18  }
19 }
20 
21 
22 void
23 PHG4Cell::identify(ostream& os) const
24 {
25  cout << "Class " << this->ClassName() << endl;
26  return;
27 }
28 
29 ostream& operator<<(ostream& stream, const PHG4Cell * cell){
30  stream << "PHG4Cell" << endl;
31  return stream;
32 }
33 
34 void
36 {
37  cout << "Reset not implemented by daughter class" << endl;
38  return;
39 }
40 
41 std::pair<const std::string,PHG4Cell::PROPERTY_TYPE>
43 {
44  switch (prop_id)
45  {
46  case prop_stave_index:
47  return make_pair("stave index",PHG4Cell::type_int);
48  case prop_half_stave_index:
49  return make_pair("half stave index",PHG4Cell::type_int);
50  case prop_module_index:
51  return make_pair("module index",PHG4Cell::type_int);
52  case prop_chip_index:
53  return make_pair("chip index",PHG4Cell::type_int);
54  case prop_pixel_index:
55  return make_pair("pixel index",PHG4Cell::type_int);
56  case prop_phibin:
57  return make_pair("phibin",PHG4Cell::type_int);
58  case prop_zbin:
59  return make_pair("zbin",PHG4Cell::type_int);
60  case prop_ladder_z_index:
61  return make_pair("ladder z index",PHG4Cell::type_int);
62  case prop_ladder_phi_index:
63  return make_pair("ladder phi index",PHG4Cell::type_int);
64  case prop_edep:
65  return make_pair("energy deposition",PHG4Cell::type_float);
66  case prop_eion:
67  return make_pair("ionizing energy loss",PHG4Cell::type_float);
68  case prop_light_yield:
69  return make_pair("light yield",PHG4Cell::type_float);
70  default:
71  cout << "PHG4Cell::get_property_info - Fatal Error - unknown index " << prop_id << endl;
72  exit(1);
73  }
74 }
75 
76 
77 bool
78 PHG4Cell::check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type)
79 {
80  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
81  if (property_info.second != prop_type)
82  {
83  return false;
84  }
85  return true;
86 }
87 
88 string
90 {
91  switch(prop_type)
92  {
93  case type_int:
94  return "int";
95  case type_uint:
96  return "unsigned int";
97  case type_float:
98  return "float";
99  default:
100  return "unkown";
101  }
102 }
ostream & operator<<(ostream &stream, const PHG4Cell *cell)
Definition: PHG4Cell.cc:29
virtual void Reset()
Definition: PHG4Cell.cc:35
static std::string get_property_type(const PROPERTY_TYPE prop_type)
Definition: PHG4Cell.cc:89
static std::pair< const std::string, PROPERTY_TYPE > get_property_info(PROPERTY prop_id)
Definition: PHG4Cell.cc:42
virtual void Copy(PHG4Cell const &g4cell)
Definition: PHG4Cell.cc:8
virtual unsigned int get_property_nocheck(const PROPERTY prop_id) const
Definition: PHG4Cell.h:157
static bool check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type)
Definition: PHG4Cell.cc:78
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Cell.cc:23
virtual PHG4CellDefs::keytype get_cellid() const
Definition: PHG4Cell.h:41
PROPERTY_TYPE
Definition: PHG4Cell.h:137
@ type_int
Definition: PHG4Cell.h:138
@ type_float
Definition: PHG4Cell.h:140
virtual bool has_property(const PROPERTY prop_id) const
Definition: PHG4Cell.h:144