Class Reference for E1039 Core & Analysis Software
PHG4CellDefs.cc
Go to the documentation of this file.
1 #include "PHG4CellDefs.h"
2 
3 #include <phool/phool.h>
4 
5 #include <iostream>
6 
7 unsigned short
9 
10 unsigned short
12 
14 generic_16bit_genkey(const unsigned short detid, const PHG4CellDefs::CellBinning binning, const unsigned short upper16bits, const unsigned short lower16bits);
15 
17 generic_32bit_genkey(const unsigned short detid, const PHG4CellDefs::CellBinning binning, const unsigned int bit32);
18 
19 using namespace std;
20 
22 PHG4CellDefs::SizeBinning::genkey(const unsigned short detid, const unsigned short zbin, const unsigned short iphi)
23 {
24  PHG4CellDefs::keytype key = generic_16bit_genkey(detid, sizebinning, zbin, iphi);
25  return key;
26 }
27 
28 unsigned short int
30 {
31  unsigned short int phibin = generic_lower_16bit_key(key, sizebinning);
32  return phibin;
33 }
34 
35 unsigned short int
37 {
38  unsigned short int zbin = generic_upper_16bit_key(key, sizebinning);
39  return zbin;
40 }
41 
43 PHG4CellDefs::EtaPhiBinning::genkey(const unsigned short detid, const unsigned short iphi, const unsigned short ieta)
44 {
46  return key;
47 }
48 
49 unsigned short int
51 {
52  unsigned short int etabin = generic_lower_16bit_key(key, etaphibinning);
53  return etabin;
54 }
55 
56 unsigned short int
58 {
59  unsigned short int phibin = generic_upper_16bit_key(key, etaphibinning);
60  return phibin;
61 }
62 
64 PHG4CellDefs::SpacalBinning::genkey(const unsigned short etabin, const unsigned short phibin, const unsigned short fiberid)
65 {
66  PHG4CellDefs::keytype key = generic_16bit_genkey(etabin, spacalbinning, phibin, fiberid);
67  return key;
68 }
69 
70 unsigned short int
72 {
73  unsigned long long tmp = key >> 48;
74  unsigned short int etabin = tmp;
75  return etabin;
76 }
77 
78 unsigned short int
80 {
81  unsigned short int phibin = generic_upper_16bit_key(key, spacalbinning);
82  return phibin;
83 }
84 
85 unsigned short int
87 {
88  unsigned short int fiberid = generic_lower_16bit_key(key, spacalbinning);
89  return fiberid;
90 }
91 
92 
94 PHG4CellDefs::ScintillatorSlatBinning::genkey(const unsigned short detid, const unsigned short icolumn, const unsigned short irow)
95 {
97  return key;
98 }
99 
100 unsigned short int
102 {
103  unsigned short int rowbin = generic_lower_16bit_key(key, scintillatorslatbinning);
104  return rowbin;
105 }
106 
107 unsigned short int
109 {
110  unsigned short int columnbin = generic_upper_16bit_key(key, scintillatorslatbinning);
111  return columnbin;
112 }
114 PHG4CellDefs::EtaXsizeBinning::genkey(const unsigned short detid, const unsigned short ixbin, const unsigned short ieta)
115 {
117  return key;
118 }
119 
120 unsigned short int
122 {
123  unsigned short int etabin = generic_lower_16bit_key(key, etaxsizebinning);
124  return etabin;
125 }
126 
127 unsigned short int
129 {
130  unsigned short int etabin = generic_upper_16bit_key(key, etaxsizebinning);
131  return etabin;
132 }
133 
135 PHG4CellDefs::MapsBinning::genkey(const unsigned short detid, const unsigned int bit32_index)
136 {
137  PHG4CellDefs::keytype key = generic_32bit_genkey(detid, mapsbinning, bit32_index);
138  return key;
139 }
140 
142 PHG4CellDefs::TPCBinning::genkey(const unsigned short detid, const unsigned short mod, const unsigned short pad)
143 {
144  PHG4CellDefs::keytype key = generic_16bit_genkey(detid, tpcbinning, mod, pad);
145  return key;
146 }
147 
148 bool
150 {
151  keytype tmp = (key >> bitshift_binning) & 0xFFFF;
152  if (tmp == binning)
153  {
154  return true;
155  }
156  return false;
157 }
158 
159 short
161 {
162  keytype tmp = (key >> bitshift_binning) & 0xFFFF;
163  short int i = tmp;
164  return i;
165 }
166 
167 short int
169 {
170  keytype tmp = (key >> bitshift_layer);
171  return tmp;
172 }
173 
174 unsigned short
176 {
177  // check correct binning first
178  PHG4CellDefs::keytype tmp = binning;
179  tmp = (tmp << PHG4CellDefs::bitshift_binning);
180  if ((key & tmp) == tmp)
181  {
182  unsigned short int low16bitkey = (key & 0xFFFF);
183  return low16bitkey;
184  }
185  cout << PHWHERE << " could not decode 0x" << hex << key << dec << endl;
186  cout << "key 0x" << hex << key << ", binning: 0x" << tmp
187  << " and: " << (key & tmp) << dec << endl;
188  exit(1);
189 }
190 
191 unsigned short
193 {
194  // check correct binning first
195  PHG4CellDefs::keytype tmp = binning;
196  tmp = (tmp << PHG4CellDefs::bitshift_binning);
197  if ((key & tmp) == tmp)
198  {
199  PHG4CellDefs::keytype keytmp = key >> PHG4CellDefs::bitshift_upperkey;
200  unsigned short int hi16bitkey = (keytmp & 0xFFFF);
201  return hi16bitkey;
202  }
203  cout << PHWHERE << " could not decode 0x" << hex << key << dec << endl;
204  exit(1);
205 }
206 
208 generic_16bit_genkey(const unsigned short detid, const PHG4CellDefs::CellBinning binning, const unsigned short upper16bits, const unsigned short lower16bits)
209 {
210  PHG4CellDefs::keytype tmp = detid;
211  PHG4CellDefs::keytype key = tmp << PHG4CellDefs::bitshift_layer; // layer/detector id used by extrating ranges
212  tmp = binning;
213  key |= (tmp << PHG4CellDefs::bitshift_binning); // binning method used to decode the key
214  tmp = upper16bits;
215  key |= (tmp << PHG4CellDefs::bitshift_upperkey); // upper bits used by column, so we can easily extract
216  // slats by column which are combined to towers
217  key |= lower16bits;
218  return key;
219 }
220 
222 generic_32bit_genkey(const unsigned short detid, const PHG4CellDefs::CellBinning binning, const unsigned int bit32)
223 {
224  PHG4CellDefs::keytype tmp = detid;
225  PHG4CellDefs::keytype key = tmp << PHG4CellDefs::bitshift_layer; // layer/detector id used by extrating ranges
226  tmp = binning;
227  key |= (tmp << PHG4CellDefs::bitshift_binning); // binning method used to decode the key
228  key |= bit32;
229  return key;
230 }
231 
PHG4CellDefs::keytype generic_32bit_genkey(const unsigned short detid, const PHG4CellDefs::CellBinning binning, const unsigned int bit32)
unsigned short generic_lower_16bit_key(const PHG4CellDefs::keytype key, const PHG4CellDefs::CellBinning binning)
PHG4CellDefs::keytype generic_16bit_genkey(const unsigned short detid, const PHG4CellDefs::CellBinning binning, const unsigned short upper16bits, const unsigned short lower16bits)
unsigned short generic_upper_16bit_key(const PHG4CellDefs::keytype key, const PHG4CellDefs::CellBinning binning)
keytype genkey(const unsigned short layer, const unsigned short etabin, const unsigned short phibin)
Definition: PHG4CellDefs.cc:43
unsigned short int get_phibin(const PHG4CellDefs::keytype key)
Definition: PHG4CellDefs.cc:57
unsigned short int get_etabin(const PHG4CellDefs::keytype key)
Definition: PHG4CellDefs.cc:50
keytype genkey(const unsigned short layer, const unsigned short etabin, const unsigned short xbin)
unsigned short int get_xsizebin(const PHG4CellDefs::keytype key)
unsigned short int get_etabin(const PHG4CellDefs::keytype key)
keytype genkey(const unsigned short layer, const unsigned int bit32_index)
unsigned short int get_column(PHG4CellDefs::keytype key)
keytype genkey(const unsigned short layer, const unsigned short irow, const unsigned short icolumn)
Definition: PHG4CellDefs.cc:94
unsigned short int get_row(PHG4CellDefs::keytype key)
unsigned short int get_zbin(const PHG4CellDefs::keytype key)
Definition: PHG4CellDefs.cc:36
unsigned short int get_phibin(const PHG4CellDefs::keytype key)
Definition: PHG4CellDefs.cc:29
keytype genkey(const unsigned short layer, const unsigned short zbin, const unsigned short iphibin)
Definition: PHG4CellDefs.cc:22
keytype genkey(const unsigned short etabin, const unsigned short phibin, const unsigned short fiberid)
Definition: PHG4CellDefs.cc:64
unsigned short get_phibin(PHG4CellDefs::keytype key)
Definition: PHG4CellDefs.cc:79
unsigned short get_etabin(PHG4CellDefs::keytype key)
Definition: PHG4CellDefs.cc:71
unsigned short get_fiberid(PHG4CellDefs::keytype key)
Definition: PHG4CellDefs.cc:86
keytype genkey(const unsigned short lyr, const unsigned short mod, const unsigned short pad)
unsigned long long keytype
Definition: PHG4CellDefs.h:7
short int get_detid(const PHG4CellDefs::keytype key)
short get_binning(PHG4CellDefs::keytype key)
bool has_binning(PHG4CellDefs::keytype key, PHG4CellDefs::CellBinning binning)
@ scintillatorslatbinning
Definition: PHG4CellDefs.h:31
#define PHWHERE
Definition: phool.h:23