17 #ifndef PNDFTSCAPARAMETERS_H 18 #define PNDFTSCAPARAMETERS_H 58 static void CALocalToGlobal(T x0, T x1, T x2, T angle, T &x, T &y, T &z);
60 static void GlobalToCALocal(T x, T y, T z, T angle, T &x0, T &x1, T &x2);
73 x = x0 * sA + x1 * cA;
74 y = x0 * cA - x1 * sA;
80 CALocalToGlobal<T>(x0, x1, angle, x, y);
96 GlobalToCALocal<T>(x, y, angle, x0, x1);
103 template <
typename T>
106 UNUSED_PARAM1(angle);
111 template <
typename T>
114 UNUSED_PARAM1(angle);
120 template <
typename T>
125 x = x0 * cA - x1 * sA;
126 y = x0 * sA + x1 * cA;
129 template <
typename T>
132 CALocalToGlobal<T>(x0, x1, angle, x, y);
136 template <
typename T>
141 x0 = x * cA + y * sA;
142 x1 = -x * sA + y * cA;
145 template <
typename T>
148 GlobalToCALocal<T>(x, y, angle, x0, x1);
203 #endif // ALIHLTTPCCAPARAMETERS_H static const float RefThreshold
static const float MinTrackPurity
static void GlobalToCALocal(T x, T y, T angle, T &x0, T &x1)
static const float ExtraThreshold
static void CALocalToGlobal(T x0, T x1, T angle, T &x, T &y)