Class Reference for E1039 Core & Analysis Software
PHG4CylinderGeomv4.cc
Go to the documentation of this file.
1 #include "PHG4CylinderGeomv4.h"
2 #include <cmath>
3 
4 using namespace std;
5 
7  N_sensors_in_layer(-1),
8  layer(-1),
9  layer_radius(NAN),
10  radius_stagger(NAN),
11  layer_NZ(-1),
12  segment_z_step(NAN),
13  segment_phi_step(NAN),
14  sensor_x_offset(NAN),
15  sensor_y_offset(NAN),
16  N_strip_columns(-1),
17  N_strips_per_column(-1),
18  N_staggers(-1),
19  strip_z_spacing(NAN),
20  strip_y_spacing(NAN),
21  strip_tilt(NAN)
22 
23 {
24  return;
25 }
26 
27 void
28 PHG4CylinderGeomv4::identify(std::ostream& os) const
29 {
30  os << "PHG4CylinderGeomv4: layer: " << layer
31  << ", layer_radius: " << layer_radius
32  << ", radius_stagger: " << radius_stagger
33  << ", N_sensors_in_layer: " << N_sensors_in_layer
34  << ", layer_NZ: " << layer_NZ
35  << ", segment_z_step: " << segment_z_step
36  << ", segment_phi_step: " << segment_phi_step
37  << ", sensor_x_offset: " << sensor_x_offset
38  << ", sensor_y_offset: " << sensor_y_offset
39  << ", N_strip_columns: " << N_strip_columns
40  << ", N_strips_per_column: " << N_strips_per_column
41  << ", N_staggers " << N_staggers
42  << ", strip_z_spacing: " << strip_z_spacing
43  << ", strip_y_spacing: " << strip_y_spacing
44  << ", strip_tilt: " << strip_tilt
45  << endl;
46  return;
47 }
48 
49 void PHG4CylinderGeomv4::find_segment_center(int segment_z_bin, int segment_phi_bin, double location[])
50 {
51  double z_location = (double) (segment_z_bin - layer_NZ/2) * segment_z_step;
52 
53 
54  // this determines the stggered layer radius
55  int istagger = segment_phi_bin % N_staggers;
56 
57  // We need to stagger the radii at alternate phi values by radius_stagger, since the ladders overlap in phi
58  // The number of staggers is an input number, since it has to be the same for both parts of a double layer!
59  double R_layer = layer_radius + (double) istagger * radius_stagger;
60 
61  // Place the ladder segment envelopes at the correct z and phi
62  double phi = (double) segment_phi_bin * segment_phi_step;
63 
64  double x_location = R_layer * cos(phi);
65  double y_location = R_layer * sin(phi);
66 
67  location[0] = x_location;
68  location[1] = y_location;
69  location[2] = z_location;
70 }
71 
72 void PHG4CylinderGeomv4::find_strip_center(int segment_z_bin, int segment_phi_bin, int strip_column, int strip_index, double location[])
73 {
74  // Start by getting the ladder segment center location in the sPHENIX frame
75  find_segment_center(segment_z_bin, segment_phi_bin, location);
76 
77  // Now calculate the strip x, y and z position in the frame of the ladder segment
78  // if N_strip_columns is even, the center of the sensor is a boundary between strip columns, the first sensor is 1/2 strip_z_spacing from zero
79  // if it is odd, the center of the sensor is in the middle of a strip column, one strip is centered at zero
80 
81  double strip_sensor_z = 0.0;
82  if(N_strip_columns%2)
83  strip_sensor_z = ((double) (strip_column - N_strip_columns/2) ) * strip_z_spacing;
84  else
85  strip_sensor_z = ((double) (strip_column - N_strip_columns/2) + 0.5) * strip_z_spacing;
86 
87  double strip_sensor_y = 0.0;
89  strip_sensor_y = (double) (strip_index - N_strips_per_column/2) * strip_y_spacing;
90  else
91  strip_sensor_y = ((double) (strip_index - N_strips_per_column/2) + 0.5) * strip_y_spacing;
92 
93  // The sensor is set forward of the center in the ladder segment volume
94  double strip_sensor_x = sensor_x_offset;
95 
96  // If there is only an upper ROC, the sensor is not centered in the ladder segment
97  // Add the sensor offset to the strip_sensor_y value
98 
99  strip_sensor_y += sensor_y_offset;
100 
101  // Now we need to transform the position in the ladder segment frame to that in the sPHENIX frame
102  // this is just a rotation around the z axis in phi
103  double phi = (double) segment_phi_bin * segment_phi_step;
104  double x = strip_sensor_x * cos(phi) - strip_sensor_y * sin(phi);
105  double y = strip_sensor_y * cos(phi) + strip_sensor_x * sin(phi);
106 
107  // now add these to the location of the sensor center in the sPHENIX frame
108  location[0] += x;
109  location[1] += y;
110  location[2] += strip_sensor_z;
111 
112  return;
113 }
114 
void find_strip_center(const int segment_z_bin, const int segment_phi_bin, const int strip_column, const int strip_index, double location[])
void identify(std::ostream &os=std::cout) const
void find_segment_center(const int segment_z_bin, const int segment_phi_bin, double location[])