Class Reference for E1039 Core & Analysis Software
PHG4CylinderCellGeom.cc
Go to the documentation of this file.
1 #include "PHG4CylinderCellGeom.h"
2 #include "PHG4CylinderCellDefs.h"
3 
4 #include <phool/phool.h>
5 #include <cmath>
6 #include <cstdlib>
7 
8 using namespace std;
9 
11  layer(-9999),
12  binning(0),
13  radius(NAN),
14  nzbins(-1),
15  zmin(NAN),
16  zstep(NAN),
17  nphibins(-1),
18  phimin(-M_PI),
19  phistep(NAN),
20  thickness(NAN)
21 {
22  return;
23 }
24 
25 void
27 {
29  nzbins = i;
30 }
31 
32 void
34 {
36  zmin = z;
37 }
38 
39 int
41 {
43  return nzbins;
44 }
45 
46 double
48 {
50  return zmin;
51 }
52 
53 double
55 {
57  return zstep;
58 }
59 
60 void
62 {
64  zstep = z;
65 }
66 
67 int
69 {
70  check_binning_method_phi("PHG4CylinderCellGeom::get_phibins");
71 return nphibins;
72 }
73 
74 double
76 {
77  check_binning_method_phi("PHG4CylinderCellGeom::get_phistep");
78  return phistep;
79 }
80 
81 double
83 {
84  check_binning_method_phi("PHG4CylinderCellGeom::get_phimin");
85  return phimin;
86 }
87 
88 void
90 {
91  check_binning_method_phi("PHG4CylinderCellGeom::set_phibins");
92  nphibins = i;
93 }
94 
95 void
97 {
98  check_binning_method_phi("PHG4CylinderCellGeom::set_phistep");
99  phistep = r;
100 }
101 
102 void
104 {
105  check_binning_method_phi("PHG4CylinderCellGeom::set_phimin");
106  phimin = r;
107 }
108 
109 int
111 {
112  check_binning_method_eta("PHG4CylinderCellGeom::get_etabins");
113  return nzbins;
114 }
115 
116 double
118 {
119  check_binning_method_eta("PHG4CylinderCellGeom::get_etastep");
120  return zstep;
121 }
122 double
124 {
125  check_binning_method_eta("PHG4CylinderCellGeom::get_etamin");
126  return zmin;
127 }
128 
129 void
131 {
132  check_binning_method_eta("PHG4CylinderCellGeom::set_etamin");
133  zmin = z;
134 }
135 
136 void
138 {
139  check_binning_method_eta("PHG4CylinderCellGeom::set_etastep");
140  zstep = z;
141 }
142 
143 void
145 {
146  check_binning_method_eta("PHG4CylinderCellGeom::set_etabins");
147  nzbins = i;
148 }
149 
150 void
151 PHG4CylinderCellGeom::identify(std::ostream& os) const
152 {
153  os << "PHG4CylinderCellGeom::identify - layer: " << layer
154  << ", radius: " << radius
155  << ", thickness: " << thickness;
156  switch (binning)
157  {
159  os << ", zbins: " << nzbins
160  << ", zmin: " << zmin
161  << ", zstepsize: " << zstep;
162  break;
164  os << ", etabins: " << nzbins
165  << ", etamin: " << zmin
166  << ", etastepsize: " << zstep;
167  break;
169  os << ", etabins: " << nzbins
170  << ", etamin: " << zmin
171  << ", etastepsize: " << zstep;
172  break;
174  os << ", etabins: " << nzbins<<" for Spacal";
175  break;
176  default:
177  os << "no valid binning method: " << binning << endl;
178  return;
179  break;
180  }
181  os << ", phimin: " << phimin
182  << ", phibins: " << nphibins
183  << ", phistep: " << phistep
184  << endl;
185  return;
186 }
187 
188 pair<double, double>
190 {
191  if (ibin < 0 || ibin > nzbins)
192  {
193  cout << PHWHERE << " Asking for invalid bin in z: " << ibin << endl;
194  exit(1);
195  }
197  double zlow = zmin + ibin * zstep;
198  double zhigh = zlow + zstep;
199  return make_pair(zlow, zhigh);
200 }
201 
202 pair<double, double>
204 {
205  if (ibin < 0 || ibin > nzbins)
206  {
207  cout << PHWHERE << " Asking for invalid bin in z: " << ibin << endl;
208  exit(1);
209  }
210  check_binning_method_eta("PHG4CylinderCellGeom::get_etabounds");
211 // check_binning_method(PHG4CylinderCellDefs::etaphibinning);
212  double zlow = zmin + ibin * zstep;
213  double zhigh = zlow + zstep;
214  return make_pair(zlow, zhigh);
215 }
216 
217 
218 pair<double, double>
220 {
221  if (ibin < 0 || ibin > nphibins)
222  {
223  cout << PHWHERE << "Asking for invalid bin in phi: " << ibin << endl;
224  exit(1);
225  }
226 
227  double philow = phimin + ibin * phistep;
228  double phihigh = philow + phistep;
229  return make_pair(philow, phihigh);
230 }
231 
232 int
233 PHG4CylinderCellGeom::get_zbin(const double z) const
234 {
235  if (z < zmin || z > (zmin+nzbins*zstep))
236  {
237  // cout << PHWHERE << "Asking for bin for z outside of z range: " << z << endl;
238  return -1;
239  }
240 
242  return floor( (z-zmin)/zstep );
243 }
244 
245 int
246 PHG4CylinderCellGeom::get_etabin(const double eta) const
247 {
248  if (eta < zmin || eta > (zmin+nzbins*zstep))
249  {
250  // cout << "Asking for bin for eta outside of eta range: " << eta << endl;
251  return -1;
252  }
254  return floor( (eta-zmin)/zstep );
255 }
256 
257 int
258 PHG4CylinderCellGeom::get_phibin(const double phi) const
259 {
260  double norm_phi = phi;
261  if(phi < phimin || phi > (phimin+nphibins*phistep))
262  {
263  int nwraparound = -floor((phi-phimin) * 0.5 / M_PI);
264  norm_phi += 2*M_PI*nwraparound;
265  }
267  return floor( (norm_phi-phimin)/phistep );
268 }
269 
270 double
272 {
273  if (ibin < 0 || ibin > nzbins)
274  {
275  cout << PHWHERE << "Asking for invalid bin in z: " << ibin << endl;
276  exit(1);
277  }
279  return zmin + (ibin + 0.5)*zstep;
280 }
281 
282 double
284 {
285  if (ibin < 0 || ibin > nzbins)
286  {
287  cout << PHWHERE << "Asking for invalid bin in eta: " << ibin << endl;
288  cout << "minbin: 0, maxbin " << nzbins << endl;
289  exit(1);
290  }
292  return zmin + (ibin + 0.5)*zstep;
293 }
294 
295 double
297 {
298  if (ibin < 0 || ibin > nphibins)
299  {
300  cout << PHWHERE << "Asking for invalid bin in phi: " << ibin << endl;
301  exit(1);
302  }
303 
305  return (phimin + (ibin + 0.5)*phistep);
306 }
307 
308 string
310 {
311  switch (i)
312  {
314  return "Bins in cm";
315  break;
317  return "Eta/Phi bins";
318  break;
320  return "Eta/numslat bins";
321  break;
323  return "SPACAL Tower bins";
324  break;
325  default:
326  break;
327  }
328  return "Unknown";
329 }
330 
331 void
333 {
334  if (binning != i)
335  {
336  cout << "different binning method used " << methodname(binning)
337  << ", not : " << methodname(i)
338  << endl;
339  exit(1);
340  }
341  return;
342 }
343 
344 void
346 {
350  {
351  if (src.size())
352  cout << src<<" : ";
353 
354  cout << "different binning method used " << methodname(binning)
358  << endl;
359  exit(1);
360  }
361  return;
362 }
363 
364 void
366 {
371  {
372  if (src.size())
373  cout << src<<" : ";
374 
375  cout << "different binning method used " << methodname(binning)
380  << endl;
381  exit(1);
382  }
383  return;
384 }
void set_zmin(const double z)
void set_etastep(const double z)
virtual std::pair< double, double > get_phibounds(const int ibin) const
virtual int get_phibin(const double phi) const
virtual double get_phicenter(const int ibin) const
void set_etamin(const double z)
void set_zstep(const double z)
void set_phibins(const int i)
void set_phistep(const double phi)
void set_phimin(const double phi)
void check_binning_method_phi(const std::string &src="") const
virtual double get_etacenter(const int ibin) const
virtual double get_zcenter(const int ibin) const
virtual std::pair< double, double > get_zbounds(const int ibin) const
void identify(std::ostream &os=std::cout) const
void set_zbins(const int i)
void check_binning_method(const int i) const
void set_etabins(const int i)
void check_binning_method_eta(const std::string &src="") const
virtual int get_zbin(const double z) const
virtual int get_etabin(const double eta) const
std::string methodname(const int i) const
virtual std::pair< double, double > get_etabounds(const int ibin) const
#define PHWHERE
Definition: phool.h:23