Class Reference for E1039 Core & Analysis Software
PHG4CylinderGeomv4.h
Go to the documentation of this file.
1 #ifndef PHG4CylinderGeomv4_H__
2 #define PHG4CylinderGeomv4_H__
3 
4 #include "PHG4CylinderGeom.h"
5 
6 #include <phool/phool.h>
7 #include <cmath>
8 
10 {
11  public:
13  PHG4CylinderGeomv4(const int lnsensors,
14  const int lnz,
15  const int nspc,
16  int nsc,
17  const int nstag,
18  const double lr,
19  const double rs,
20  const double szs,
21  const double sps,
22  const double sxo,
23  double syo,
24  const double szsp,
25  const double sys,
26  const double tck,
27  const double st) :
28  N_sensors_in_layer(lnsensors),
29  layer(-1),
30  layer_radius(lr),
32  layer_NZ(lnz),
33  segment_z_step(szs),
34  segment_phi_step(sps),
35  sensor_x_offset(sxo),
36  sensor_y_offset(syo),
37  N_strip_columns(nsc),
38  N_strips_per_column(nspc),
39  N_staggers(nstag),
40  strip_z_spacing(szsp),
41  strip_y_spacing(sys),
42  thickness(tck),
43  strip_tilt(st)
44  {}
45 
46  virtual ~PHG4CylinderGeomv4() {}
47 
48  void identify(std::ostream& os = std::cout) const;
49  void set_layer(const int i) {layer = i;}
50  int get_layer() const {return layer;}
51  double get_radius() const {return layer_radius;}
52 
53  void find_segment_center(const int segment_z_bin, const int segment_phi_bin, double location[]);
54  void find_strip_center(const int segment_z_bin, const int segment_phi_bin, const int strip_column, const int strip_index, double location[]);
55 
56  double get_thickness() const {return thickness;}
57  double get_strip_y_spacing() const {return strip_y_spacing;}
58  double get_strip_z_spacing() const {return strip_z_spacing;}
59  double get_strip_tilt() const {return strip_tilt;}
60  double get_sensor_x_offset() const {return sensor_x_offset;}
61  double get_sensor_y_offset() const {return sensor_y_offset;}
62  int get_N_strip_columns() const {return N_strip_columns;}
65 
66 protected:
67 
69  int layer;
70 
71  // finding the center of a sensor given ladder_segment_z and ladder_
72  double layer_radius;
74  int layer_NZ;
79 
80  // navigation within a sensor
81  //double strip_x_offset;
82  // double strip_y_offset;
88  double thickness;
89  double strip_tilt;
90 
91  ClassDef(PHG4CylinderGeomv4,1)
92 };
93 
94 #endif
double get_strip_tilt() const
PHG4CylinderGeomv4(const int lnsensors, const int lnz, const int nspc, int nsc, const int nstag, const double lr, const double rs, const double szs, const double sps, const double sxo, double syo, const double szsp, const double sys, const double tck, const double st)
double get_thickness() const
double get_strip_z_spacing() const
void set_layer(const int i)
double get_strip_y_spacing() const
int get_N_strip_columns() const
void find_strip_center(const int segment_z_bin, const int segment_phi_bin, const int strip_column, const int strip_index, double location[])
int get_N_strips_per_column() const
int get_N_sensors_in_layer() const
void identify(std::ostream &os=std::cout) const
double get_sensor_y_offset() const
double get_radius() const
void find_segment_center(const int segment_z_bin, const int segment_phi_bin, double location[])
double get_sensor_x_offset() const
Definition: rs_Reader.h:9