Class Reference for E1039 Core & Analysis Software
PHG4Cellv1.h
Go to the documentation of this file.
1 #ifndef PHG4Cellv1_h__
2 #define PHG4Cellv1_h__
3 
4 #include "PHG4Cell.h"
5 #include "PHG4CellDefs.h"
6 #ifdef __CINT__
7 #include <stdint.h>
8 #else
9 #include <cstdint>
10 #endif
11 #include <iostream>
12 #include <map>
13 
14 class PHG4Cellv1: public PHG4Cell
15 {
16  public:
17  PHG4Cellv1();
18  PHG4Cellv1(const PHG4CellDefs::keytype g4cellid);
19  virtual ~PHG4Cellv1();
20 
21  virtual void identify(std::ostream& os = std::cout) const;
22  virtual void Reset();
23 
25 
27  bool has_binning(const PHG4CellDefs::CellBinning binning) const;
28  short int get_detid() const;
29 
30  void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep);
31  void add_shower_edep(const int g4showerid, const float edep);
32 
34  return std::make_pair(hitedeps.begin(), hitedeps.end());
35  }
36 
38  return std::make_pair(showeredeps.begin(),showeredeps.end());
39  }
40 
41 
42  void add_edep(const float f) {add_property(prop_edep,f);}
43  double get_edep() const {return get_property_float(prop_edep);}
44 
45  void add_eion(const float f) {add_property(prop_eion,f);}
46  double get_eion() const {return get_property_float(prop_eion);}
47 
48  void add_light_yield(const float f) {add_property(prop_light_yield,f);}
50 
53 
56 
59 
62 
65 
66  void set_phibin(const int i) {set_property(prop_phibin,i);}
67  int get_phibin() const {return get_property_int(prop_phibin);}
68 
71 
74 
75 // tpctod* get_train_of_digits() {return &trainOfDigits;}
76 
77  void set_zbin(const int i) {set_property(prop_zbin,i);}
78  int get_zbin() const {return get_property_int(prop_zbin);}
79 
80  void print() const;
81 
82  bool has_property(const PROPERTY prop_id) const;
83  float get_property_float(const PROPERTY prop_id) const;
84  int get_property_int(const PROPERTY prop_id) const;
85  unsigned int get_property_uint(const PROPERTY prop_id) const;
86  void add_property(const PROPERTY prop_id, const float value);
87  void add_property(const PROPERTY prop_id, const int value);
88  void add_property(const PROPERTY prop_id, const unsigned int value);
89  void set_property(const PROPERTY prop_id, const float value);
90  void set_property(const PROPERTY prop_id, const int value);
91  void set_property(const PROPERTY prop_id, const unsigned int value);
92 
93 
94  protected:
95  unsigned int get_property_nocheck(const PROPERTY prop_id) const;
96  void set_property_nocheck(const PROPERTY prop_id,const unsigned int ui) {prop_map[prop_id]=ui;}
97 
101 // tpctod trainOfDigits;
102 
104  typedef uint8_t prop_id_t;
105  typedef uint32_t prop_storage_t;
106  typedef std::map<prop_id_t, prop_storage_t> prop_map_t;
107 
109  union u_property{
110  float fdata;
111  int32_t idata;
112  uint32_t uidata;
113 
114  u_property(int32_t in): idata(in) {}
115  u_property(uint32_t in): uidata(in) {}
116  u_property(float in): fdata(in) {}
118 
120  };
121 
124 
125 
126  ClassDef(PHG4Cellv1,3)
127 };
128 
129 #endif
std::pair< ShowerEdepConstIterator, ShowerEdepConstIterator > ShowerEdepConstRange
Definition: PHG4Cell.h:25
@ 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_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
std::pair< EdepConstIterator, EdepConstIterator > EdepConstRange
Definition: PHG4Cell.h:19
std::map< int, float > ShowerEdepMap
Definition: PHG4Cell.h:21
std::map< PHG4HitDefs::keytype, float > EdepMap
Definition: PHG4Cell.h:15
EdepConstRange get_g4hits()
Definition: PHG4Cellv1.h:33
uint8_t prop_id_t
storage types for additional property
Definition: PHG4Cellv1.h:104
void set_zbin(const int i)
Definition: PHG4Cellv1.h:77
virtual void Reset()
Definition: PHG4Cellv1.cc:229
PHG4CellDefs::keytype get_cellid() const
Definition: PHG4Cellv1.h:26
int get_stave_index() const
Definition: PHG4Cellv1.h:73
unsigned int get_property_nocheck(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:212
void add_property(const PROPERTY prop_id, const float value)
Definition: PHG4Cellv1.cc:113
int get_phibin() const
Definition: PHG4Cellv1.h:67
void set_ladder_z_index(const int i)
Definition: PHG4Cellv1.h:60
void set_cellid(const PHG4CellDefs::keytype i)
Definition: PHG4Cellv1.h:24
virtual ~PHG4Cellv1()
Definition: PHG4Cellv1.cc:17
double get_eion() const
Definition: PHG4Cellv1.h:46
double get_edep() const
Definition: PHG4Cellv1.h:43
int get_ladder_z_index() const
Definition: PHG4Cellv1.h:61
ShowerEdepConstRange get_g4showers()
Definition: PHG4Cellv1.h:37
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Cellv1.cc:237
void add_edep(const float f)
Definition: PHG4Cellv1.h:42
void set_half_stave_index(const int i)
Definition: PHG4Cellv1.h:54
void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
Definition: PHG4Cellv1.cc:26
unsigned int get_property_uint(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:95
void print() const
Definition: PHG4Cellv1.cc:223
void set_ladder_phi_index(const int i)
Definition: PHG4Cellv1.h:57
float get_light_yield() const
Definition: PHG4Cellv1.h:49
uint32_t prop_storage_t
Definition: PHG4Cellv1.h:105
int get_module_index() const
Definition: PHG4Cellv1.h:64
std::map< prop_id_t, prop_storage_t > prop_map_t
Definition: PHG4Cellv1.h:106
prop_map_t prop_map
container for additional property
Definition: PHG4Cellv1.h:123
int get_ladder_phi_index() const
Definition: PHG4Cellv1.h:58
void set_phibin(const int i)
Definition: PHG4Cellv1.h:66
void add_shower_edep(const int g4showerid, const float edep)
Definition: PHG4Cellv1.cc:33
int get_property_int(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:77
void set_pixel_index(const int i)
Definition: PHG4Cellv1.h:69
void set_stave_index(const int i)
Definition: PHG4Cellv1.h:72
void set_chip_index(const int i)
Definition: PHG4Cellv1.h:51
int get_half_stave_index() const
Definition: PHG4Cellv1.h:55
float get_property_float(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:59
ShowerEdepMap showeredeps
Definition: PHG4Cellv1.h:100
int get_zbin() const
Definition: PHG4Cellv1.h:78
EdepMap hitedeps
Definition: PHG4Cellv1.h:99
PHG4CellDefs::keytype cellid
Definition: PHG4Cellv1.h:98
void add_light_yield(const float f)
Definition: PHG4Cellv1.h:48
int get_chip_index() const
Definition: PHG4Cellv1.h:52
int get_pixel_index() const
Definition: PHG4Cellv1.h:70
bool has_binning(const PHG4CellDefs::CellBinning binning) const
Definition: PHG4Cellv1.cc:40
short int get_detid() const
Definition: PHG4Cellv1.cc:46
void set_property(const PROPERTY prop_id, const float value)
Definition: PHG4Cellv1.cc:170
bool has_property(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:52
void add_eion(const float f)
Definition: PHG4Cellv1.h:45
void set_module_index(const int i)
Definition: PHG4Cellv1.h:63
void set_property_nocheck(const PROPERTY prop_id, const unsigned int ui)
Definition: PHG4Cellv1.h:96
unsigned long long keytype
Definition: PHG4CellDefs.h:7
unsigned int keytype
Definition: PHG4HitDefs.h:8
convert between 32bit inputs and storage type prop_storage_t
Definition: PHG4Cellv1.h:109
u_property(uint32_t in)
Definition: PHG4Cellv1.h:115
prop_storage_t get_storage() const
Definition: PHG4Cellv1.h:119
u_property(int32_t in)
Definition: PHG4Cellv1.h:114