43 double angleV =
Qw::pi - angleU;
77 if (fabs(angleUrad - angleVrad) < 1.0 *
Qw::deg) {
78 QwWarning <<
"uv2xy transformation cannot be created with angles "
79 << angleUrad/
Qw::deg <<
" deg and "
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;
141 return fUV[0][0] * u +
fUV[0][1] * v;
145 return fUV[1][0] * u +
fUV[1][1] * v;
163 return fXY[0][0] * x +
fXY[0][1] * y;
167 return fXY[1][0] * x +
fXY[1][1] * y;
static const double pi
Angles: base unit is radian.
void SetOriginUVinXY(const double originX, const double originY)
Set the origin of the UV frame in the XY frame.
double xy2u(double x, double y)
Transform from [x,y] to u.
void SetWireSpacing(const double spacing)
Set the wire spacing (perpendicular distance between wires)
double fOffset[2]
which satisifies
double uv2mx(double u, double v)
Transform from [u,v] to mx.
double fAngleUrad
Angle of the U direction in radians.
double fUV[2][2]
Transformation matrix UV from [u,v] to [x,y],.
Uv2xy(EQwRegionID region)
Create a transformation helper by region.
#define QwVerbose
Predefined log drain for verbose messages.
void SetOffset(const double offsetX, const double offsetY)
Set the offset (origin of UV frame in XY coordinates)
double xy2mv(double x, double y)
Transform from [x,y] to mv.
void SetAngleUVinXY(const double angleUrad, const double angleVrad)
Set the angles of the U and V axis in the X and Y frame.
double fAngleVrad
Angle of the V direction in radians.
double fOriginXYinUV[2]
Origin of the XY system in UV coordinates.
double uv2my(double u, double v)
Transform from [u,v] to my.
double uv2x(double u, double v)
Transform from [u,v] to x.
A logfile class, based on an identical class in the Hermes analyzer.
double xy2v(double x, double y)
Transform from [x,y] to v.
void InitializeRotationMatrices()
Initialize the rotation matrixes based on the stored angles.
A helper object for transformation between [u,v] and [x,y] frames.
static std::ostream & endl(std::ostream &)
End of the line.
double uv2y(double u, double v)
Transform from [u,v] to y.
#define QwWarning
Predefined log drain for warnings.
double fWireSpacing
Wirespacing in the u/v direction.
double fXY[2][2]
which satisifies
double fOriginUVinXY[2]
Origin of the UV system in XY coordinates.
double xy2mu(double x, double y)
Transform from [x,y] to mu.