Class Reference for E1039 Core & Analysis Software
PHG4Cell.h
Go to the documentation of this file.
1 #ifndef PHG4Cell_H__
2 #define PHG4Cell_H__
3 
4 #include "PHG4CellDefs.h"
5 #include <g4main/PHG4Hit.h>
6 #include <TObject.h>
7 
8 #include <cmath>
9 #include <climits>
10 #include <map>
11 
12 class PHG4Cell: public TObject
13 {
14  public:
15  typedef std::map<PHG4HitDefs::keytype, float> EdepMap;
16  typedef EdepMap::iterator EdepIterator;
17  typedef EdepMap::const_iterator EdepConstIterator;
18  typedef std::pair<EdepIterator, EdepIterator> EdepRange;
19  typedef std::pair<EdepConstIterator, EdepConstIterator> EdepConstRange;
20 
21  typedef std::map<int, float> ShowerEdepMap;
22  typedef ShowerEdepMap::iterator ShowerEdepIterator;
23  typedef ShowerEdepMap::const_iterator ShowerEdepConstIterator;
24  typedef std::pair<ShowerEdepIterator, ShowerEdepIterator> ShowerEdepRange;
25  typedef std::pair<ShowerEdepConstIterator, ShowerEdepConstIterator> ShowerEdepConstRange;
26 
27  typedef std::pair<unsigned short,std::map<int,int> > tpccompress;
28  typedef std::map<unsigned short,tpccompress> tpctod;
29 
30 
31  virtual ~PHG4Cell() {}
32 
33  virtual void identify(std::ostream& os = std::cout) const;
34  virtual void Copy(PHG4Cell const &g4cell);
35  friend std::ostream &operator<<(std::ostream & stream, const PHG4Cell * cell);
36  virtual void Reset();
37 
38  // all methods connected to the cell id (encoding/decoding
39  virtual void set_cellid(const PHG4CellDefs::keytype i) {return;}
40 
41  virtual PHG4CellDefs::keytype get_cellid() const {return ~0x0;}
42  virtual bool has_binning(const PHG4CellDefs::CellBinning) const {return false;}
43 
44  // this adds hits to the g4 hit list map
45  virtual void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep) {return;}
46  virtual void add_edep(const PHG4HitDefs::keytype g4hitid, const int tbin, const float edep) {return;}
47  // this adds showers to the shower map
48  virtual void add_shower_edep(const int g4showerid, const float edep) {return;}
49 
51  std::map <PHG4HitDefs::keytype, float> dummy;
52  return std::make_pair(dummy.begin(), dummy.end());
53  }
54 
56  std::map <int, float> dummy;
57  return std::make_pair(dummy.begin(), dummy.end());
58  }
59 
60  virtual short int get_detid() const {return -1;}
61  // for backward compatibility, layers and detector ids are identical
62  short int get_layer() const {return get_detid();}
63 
64  virtual void add_edep(const float f) {return;}
65  virtual double get_edep() const {return NAN;}
66 
67  virtual void add_eion(const float f) {return;}
68  virtual double get_eion() const {return NAN;}
69 
70  virtual void add_light_yield(const float lightYield){return;}
71  virtual float get_light_yield() const {return NAN;}
72 
73  // get/set methodes - PLEASE add those ALPHABETICALLY
74 
75  virtual void set_chip_index(const int i) {return;}
76  virtual int get_chip_index() const {return ~0x0;}
77 
78  virtual void set_half_stave_index(const int i) {return;}
79  virtual int get_half_stave_index() const {return ~0x0;}
80 
81  virtual void set_ladder_phi_index(const int i) {return;}
82  virtual int get_ladder_phi_index() const {return ~0x0;}
83 
84  virtual void set_ladder_z_index(const int i) {return;}
85  virtual int get_ladder_z_index() const {return ~0x0;}
86 
87  virtual void set_module_index(const int i) {return;}
88  virtual int get_module_index() const {return ~0x0;}
89 
90  virtual void set_phibin(const int i) {return;}
91  virtual int get_phibin() const {return ~0x0;}
92 
93  virtual void set_pixel_index(const int i) {return;}
94  virtual int get_pixel_index() const {return ~0x0;}
95 
96  virtual void set_stave_index(const int i) {return;}
97  virtual int get_stave_index() const {return ~0x0;}
98 
99 // virtual tpctod* get_train_of_digits() {return 0;}
100 
101  virtual void set_zbin(const int i) {return;}
102  virtual int get_zbin() const {return ~0x0;}
103 
104 
105  virtual void print() const {std::cout<<"virtual PHG4Cell"<<std::endl;}
106 
110  enum PROPERTY
111  {//
112  // first various coordinates 1-20
123  //-- summed energy: - 20-30 --
125  prop_edep = 21,
127  prop_eion = 22,
128 
131 
133  prop_MAX_NUMBER = UCHAR_MAX
134  };
135 
137  {//
138  type_int = 1,
141  type_unknown = -1
142  };
143 
144  virtual bool has_property(const PROPERTY prop_id) const {return false;}
145  virtual float get_property_float(const PROPERTY prop_id) const {return NAN;}
146  virtual int get_property_int(const PROPERTY prop_id) const {return INT_MIN;}
147  virtual unsigned int get_property_uint(const PROPERTY prop_id) const {return UINT_MAX;}
148  virtual void set_property(const PROPERTY prop_id, const float value) {return;}
149  virtual void set_property(const PROPERTY prop_id, const int value) {return;}
150  virtual void set_property(const PROPERTY prop_id, const unsigned int value) {return;}
151  static std::pair<const std::string,PROPERTY_TYPE> get_property_info(PROPERTY prop_id);
152  static bool check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type);
153  static std::string get_property_type(const PROPERTY_TYPE prop_type);
154 
155  protected:
156  PHG4Cell() {}
157  virtual unsigned int get_property_nocheck(const PROPERTY prop_id) const {return UINT_MAX;}
158  virtual void set_property_nocheck(const PROPERTY prop_id,const unsigned int) {return;}
159  ClassDef(PHG4Cell,2)
160 };
161 
162 
163 #endif
std::map< unsigned short, tpccompress > tpctod
Definition: PHG4Cell.h:28
virtual void Reset()
Definition: PHG4Cell.cc:35
virtual void set_property_nocheck(const PROPERTY prop_id, const unsigned int)
Definition: PHG4Cell.h:158
virtual void set_phibin(const int i)
Definition: PHG4Cell.h:90
virtual void set_half_stave_index(const int i)
Definition: PHG4Cell.h:78
short int get_layer() const
Definition: PHG4Cell.h:62
virtual int get_module_index() const
Definition: PHG4Cell.h:88
std::pair< ShowerEdepConstIterator, ShowerEdepConstIterator > ShowerEdepConstRange
Definition: PHG4Cell.h:25
virtual int get_property_int(const PROPERTY prop_id) const
Definition: PHG4Cell.h:146
virtual bool has_binning(const PHG4CellDefs::CellBinning) const
Definition: PHG4Cell.h:42
virtual unsigned int get_property_uint(const PROPERTY prop_id) const
Definition: PHG4Cell.h:147
std::pair< ShowerEdepIterator, ShowerEdepIterator > ShowerEdepRange
Definition: PHG4Cell.h:24
friend std::ostream & operator<<(std::ostream &stream, const PHG4Cell *cell)
Definition: PHG4Cell.cc:29
PHG4Cell()
Definition: PHG4Cell.h:156
virtual void add_edep(const PHG4HitDefs::keytype g4hitid, const int tbin, const float edep)
Definition: PHG4Cell.h:46
static std::string get_property_type(const PROPERTY_TYPE prop_type)
Definition: PHG4Cell.cc:89
virtual void set_ladder_z_index(const int i)
Definition: PHG4Cell.h:84
static std::pair< const std::string, PROPERTY_TYPE > get_property_info(PROPERTY prop_id)
Definition: PHG4Cell.cc:42
virtual double get_edep() const
Definition: PHG4Cell.h:65
virtual void Copy(PHG4Cell const &g4cell)
Definition: PHG4Cell.cc:8
EdepMap::const_iterator EdepConstIterator
Definition: PHG4Cell.h:17
virtual float get_property_float(const PROPERTY prop_id) const
Definition: PHG4Cell.h:145
@ prop_half_stave_index
Definition: PHG4Cell.h:115
@ prop_chip_index
Definition: PHG4Cell.h:117
@ prop_module_index
Definition: PHG4Cell.h:116
@ prop_ladder_phi_index
Definition: PHG4Cell.h:122
@ prop_edep
deposited energy
Definition: PHG4Cell.h:125
@ prop_MAX_NUMBER
max limit in order to fit into 8 bit unsigned number
Definition: PHG4Cell.h:133
@ prop_pixel_index
Definition: PHG4Cell.h:118
@ prop_eion
ionizing energy loss
Definition: PHG4Cell.h:127
@ prop_ladder_z_index
Definition: PHG4Cell.h:121
@ prop_zbin
Definition: PHG4Cell.h:120
@ prop_stave_index
Maps coordinates.
Definition: PHG4Cell.h:114
@ prop_phibin
Definition: PHG4Cell.h:119
@ prop_light_yield
for scintillation detectors, the amount of light produced
Definition: PHG4Cell.h:130
virtual unsigned int get_property_nocheck(const PROPERTY prop_id) const
Definition: PHG4Cell.h:157
std::pair< EdepConstIterator, EdepConstIterator > EdepConstRange
Definition: PHG4Cell.h:19
virtual void set_cellid(const PHG4CellDefs::keytype i)
Definition: PHG4Cell.h:39
virtual void set_ladder_phi_index(const int i)
Definition: PHG4Cell.h:81
static bool check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type)
Definition: PHG4Cell.cc:78
virtual int get_half_stave_index() const
Definition: PHG4Cell.h:79
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Cell.cc:23
virtual ~PHG4Cell()
Definition: PHG4Cell.h:31
virtual int get_chip_index() const
Definition: PHG4Cell.h:76
std::pair< unsigned short, std::map< int, int > > tpccompress
Definition: PHG4Cell.h:27
std::pair< EdepIterator, EdepIterator > EdepRange
Definition: PHG4Cell.h:18
virtual void add_eion(const float f)
Definition: PHG4Cell.h:67
virtual void set_pixel_index(const int i)
Definition: PHG4Cell.h:93
ShowerEdepMap::const_iterator ShowerEdepConstIterator
Definition: PHG4Cell.h:23
virtual void add_light_yield(const float lightYield)
Definition: PHG4Cell.h:70
virtual void print() const
Definition: PHG4Cell.h:105
virtual PHG4CellDefs::keytype get_cellid() const
Definition: PHG4Cell.h:41
virtual int get_ladder_phi_index() const
Definition: PHG4Cell.h:82
virtual void set_zbin(const int i)
Definition: PHG4Cell.h:101
virtual void set_module_index(const int i)
Definition: PHG4Cell.h:87
virtual void add_shower_edep(const int g4showerid, const float edep)
Definition: PHG4Cell.h:48
virtual int get_ladder_z_index() const
Definition: PHG4Cell.h:85
virtual void set_property(const PROPERTY prop_id, const int value)
Definition: PHG4Cell.h:149
virtual void set_property(const PROPERTY prop_id, const unsigned int value)
Definition: PHG4Cell.h:150
virtual void add_edep(const float f)
Definition: PHG4Cell.h:64
std::map< int, float > ShowerEdepMap
Definition: PHG4Cell.h:21
virtual short int get_detid() const
Definition: PHG4Cell.h:60
virtual float get_light_yield() const
Definition: PHG4Cell.h:71
virtual double get_eion() const
Definition: PHG4Cell.h:68
virtual void set_chip_index(const int i)
Definition: PHG4Cell.h:75
virtual int get_pixel_index() const
Definition: PHG4Cell.h:94
PROPERTY_TYPE
Definition: PHG4Cell.h:137
@ type_int
Definition: PHG4Cell.h:138
@ type_unknown
Definition: PHG4Cell.h:141
@ type_float
Definition: PHG4Cell.h:140
@ type_uint
Definition: PHG4Cell.h:139
std::map< PHG4HitDefs::keytype, float > EdepMap
Definition: PHG4Cell.h:15
virtual void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
Definition: PHG4Cell.h:45
virtual ShowerEdepConstRange get_g4showers()
Definition: PHG4Cell.h:55
virtual void set_property(const PROPERTY prop_id, const float value)
Definition: PHG4Cell.h:148
virtual bool has_property(const PROPERTY prop_id) const
Definition: PHG4Cell.h:144
ShowerEdepMap::iterator ShowerEdepIterator
Definition: PHG4Cell.h:22
virtual int get_stave_index() const
Definition: PHG4Cell.h:97
virtual void set_stave_index(const int i)
Definition: PHG4Cell.h:96
virtual int get_zbin() const
Definition: PHG4Cell.h:102
virtual EdepConstRange get_g4hits()
Definition: PHG4Cell.h:50
EdepMap::iterator EdepIterator
Definition: PHG4Cell.h:16
virtual int get_phibin() const
Definition: PHG4Cell.h:91
unsigned long long keytype
Definition: PHG4CellDefs.h:7
unsigned int keytype
Definition: PHG4HitDefs.h:8