QwAnalysis
uv2xy.cc
Go to the documentation of this file.
1 /*!
2  * \file uv2xy.cc
3  * \brief A helper object for transformation between [u,v] and [x,y] frames
4  *
5  * \author Wouter Deconinck
6  * \date 2009-12-05
7  */
8 
9 #include "uv2xy.h"
10 
11 // System headers
12 #include <cstdio>
13 #include <cmath>
14 
15 // Qweak headers
16 #include "QwLog.h"
17 
18 /* For Region 2, the x wires actually measure a coordinate in the lab y direction.
19  So for the reconstruction of tracks in R2, I will use a coordinate system
20  in which x is the lab's y coordinate, y is the lab's x direction, and z is
21  the lab's negative z direction. This is the reason for the negative signs
22  on some of the variables which follow. This allows me to leave the wire
23  rCos and rSin values as calculated in the lab frame. Also note that
24  the u and v coordinates had to be shifted a bit due to the origin being
25  placed at one wire spacing below the midpoint of the first x-wire.
26 */
27 
28 /**
29  * Create a coordinate transformation helper object based on a single angle
30  *
31  * @param angleU Angle (in radians) of the U axis
32  */
33 Uv2xy::Uv2xy(const double angleU)
34 {
35  // Reset wire spacing
36  SetWireSpacing(0.0);
37 
38  // No offset of the origins
39  SetOffset(0.0, 0.0);
40  SetOriginUVinXY(0.0, 0.0);
41 
42  // Convert angles to radians and create the transformation matrices
43  double angleV = Qw::pi - angleU;
44  // Ensure correct handedness
45  if (fmod(angleV,2.0*Qw::pi) - fmod(angleU,2.0*Qw::pi) < 0.0) angleV += Qw::pi;
46  // Set the angles
47  SetAngleUVinXY(angleU, angleV);
49 }
50 
51 
52 /**
53  * Create a coordinate transformation helper object based on two angles.
54  *
55  * @param angleUrad Angle (in radians) of the U axis
56  * @param angleVrad Angle (in radians) of the V axis
57  */
58 Uv2xy::Uv2xy(const double angleUrad, const double angleVrad)
59 {
60  // Reset wire spacing
61  SetWireSpacing(0.0);
62 
63  // No offset of the origins
64  SetOffset(0.0, 0.0);
65  SetOriginUVinXY(0.0, 0.0);
66 
67  // Convert angles to radians and create the transformation matrices
68  SetAngleUVinXY(angleUrad, angleVrad);
70 }
71 
72 
73 
74 void Uv2xy::SetAngleUVinXY(const double angleUrad, const double angleVrad)
75 {
76  // Check whether U and V angle are sufficiently different
77  if (fabs(angleUrad - angleVrad) < 1.0 * Qw::deg) {
78  QwWarning << "uv2xy transformation cannot be created with angles "
79  << angleUrad/Qw::deg << " deg and "
80  << angleVrad/Qw::deg << " deg." << QwLog::endl;
81  QwWarning << "uv2xy transformation will not transform anything." << QwLog::endl;
82  fAngleUrad = 0.0;
83  fAngleVrad = Qw::pi/2;
84  } else {
85  fAngleUrad = angleUrad;
86  fAngleVrad = angleVrad;
87  }
88 }
89 
90 
91 /**
92  * Initialize the rotation matrices UV and XY based on the stored angles
93  * for the U and V axes.
94  */
96 {
97  // Angle for u wires (in radians)
98  double cu = cos(fAngleUrad);
99  double su = sin(fAngleUrad);
100 
101  // Angle for v wires (in radians)
102  double cv = cos(fAngleVrad);
103  double sv = sin(fAngleVrad);
104 
105  // [x,y] to [u,v] transformation
106  fXY[0][0] = cu;
107  fXY[0][1] = su;
108  fXY[1][0] = cv;
109  fXY[1][1] = sv;
110 
111  // [u,v] to [x,y] transformation (inverse)
112  double det = (fXY[0][0] * fXY[1][1] - fXY[0][1] * fXY[1][0]);
113  if (fabs(det) > 0.0) {
114  fUV[0][0] = fXY[1][1] / det;
115  fUV[0][1] = -fXY[0][1] / det;
116  fUV[1][0] = -fXY[1][0] / det;
117  fUV[1][1] = fXY[0][0] / det;
118  }
119  // Note: det should be +1 or -1
120  if (det < 0.0) {
121  QwVerbose << "uv2xy transformation from right- to left-handed system." << QwLog::endl;
122  }
123 }
124 
125 
126 // The following functions need to have a shift put in to take into
127 // account any offset positions between the different directions
128 
129 double Uv2xy::uv2x(double u, double v)
130 {
131  return fUV[0][0] * (u + fOffset[0] * fXY[0][0] - fWireSpacing - fOriginXYinUV[0])
132  + fUV[0][1] * (v + fOffset[1] * fXY[1][0] - fWireSpacing - fOriginXYinUV[1]);
133 }
134 double Uv2xy::uv2y(double u, double v)
135 {
136  return fUV[1][0] * (u + fOffset[0] * fXY[0][0] - fWireSpacing - fOriginXYinUV[0])
137  + fUV[1][1] * (v + fOffset[1] * fXY[1][0] - fWireSpacing - fOriginXYinUV[1]);
138 }
139 double Uv2xy::uv2mx(double u, double v)
140 {
141  return fUV[0][0] * u + fUV[0][1] * v;
142 }
143 double Uv2xy::uv2my(double u, double v)
144 {
145  return fUV[1][0] * u + fUV[1][1] * v;
146 }
147 
148 
149 double Uv2xy::xy2u(double x, double y)
150 {
151  return fXY[0][0] * (x + fOffset[0] - fOriginUVinXY[0])
152  + fXY[0][1] * (y - fOriginUVinXY[1])
153  + fWireSpacing;
154 }
155 double Uv2xy::xy2v(double x, double y)
156 {
157  return fXY[1][0] * (x + fOffset[1] - fOriginUVinXY[0])
158  + fXY[1][1] * (y - fOriginUVinXY[1])
159  + fWireSpacing;
160 }
161 double Uv2xy::xy2mu(double x, double y)
162 {
163  return fXY[0][0] * x + fXY[0][1] * y;
164 }
165 double Uv2xy::xy2mv(double x, double y)
166 {
167  return fXY[1][0] * x + fXY[1][1] * y;
168 }
static const double pi
Angles: base unit is radian.
Definition: QwUnits.h:102
void SetOriginUVinXY(const double originX, const double originY)
Set the origin of the UV frame in the XY frame.
Definition: uv2xy.h:81
double xy2u(double x, double y)
Transform from [x,y] to u.
Definition: uv2xy.cc:149
void SetWireSpacing(const double spacing)
Set the wire spacing (perpendicular distance between wires)
Definition: uv2xy.h:65
double fOffset[2]
which satisifies
Definition: uv2xy.h:151
double uv2mx(double u, double v)
Transform from [u,v] to mx.
Definition: uv2xy.cc:139
double fAngleUrad
Angle of the U direction in radians.
Definition: uv2xy.h:154
double fUV[2][2]
Transformation matrix UV from [u,v] to [x,y],.
Definition: uv2xy.h:146
static const double deg
Definition: QwUnits.h:106
Uv2xy(EQwRegionID region)
Create a transformation helper by region.
#define QwVerbose
Predefined log drain for verbose messages.
Definition: QwLog.h:55
void SetOffset(const double offsetX, const double offsetY)
Set the offset (origin of UV frame in XY coordinates)
Definition: uv2xy.h:70
double xy2mv(double x, double y)
Transform from [x,y] to mv.
Definition: uv2xy.cc:165
void SetAngleUVinXY(const double angleUrad, const double angleVrad)
Set the angles of the U and V axis in the X and Y frame.
Definition: uv2xy.cc:74
double fAngleVrad
Angle of the V direction in radians.
Definition: uv2xy.h:155
double fOriginXYinUV[2]
Origin of the XY system in UV coordinates.
Definition: uv2xy.h:157
double uv2my(double u, double v)
Transform from [u,v] to my.
Definition: uv2xy.cc:143
double uv2x(double u, double v)
Transform from [u,v] to x.
Definition: uv2xy.cc:129
A logfile class, based on an identical class in the Hermes analyzer.
double xy2v(double x, double y)
Transform from [x,y] to v.
Definition: uv2xy.cc:155
void InitializeRotationMatrices()
Initialize the rotation matrixes based on the stored angles.
Definition: uv2xy.cc:95
A helper object for transformation between [u,v] and [x,y] frames.
static std::ostream & endl(std::ostream &)
End of the line.
Definition: QwLog.cc:299
double uv2y(double u, double v)
Transform from [u,v] to y.
Definition: uv2xy.cc:134
#define QwWarning
Predefined log drain for warnings.
Definition: QwLog.h:45
double fWireSpacing
Wirespacing in the u/v direction.
Definition: uv2xy.h:152
double fXY[2][2]
which satisifies
Definition: uv2xy.h:148
double fOriginUVinXY[2]
Origin of the UV system in XY coordinates.
Definition: uv2xy.h:158
double xy2mu(double x, double y)
Transform from [x,y] to mu.
Definition: uv2xy.cc:161