-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Polar2D.h
270 lines (194 loc) · 6.02 KB
/
Polar2D.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// @(#)root/mathcore:$Id$
// Authors: W. Brown, M. Fischler, L. Moneta 2005
/**********************************************************************
* *
* Copyright (c) 2005 , LCG ROOT MathLib Team and *
* FNAL LCG ROOT MathLib Team *
* *
* *
**********************************************************************/
// Header file for class Polar2D
//
// Created by: Lorenzo Moneta at Mon May 30 11:40:03 2005
// Major revamp: M. Fischler at Wed Jun 8 2005
//
// Last update: $Id$
//
#ifndef ROOT_Math_GenVector_Polar2D
#define ROOT_Math_GenVector_Polar2D 1
#include "Math/Math.h"
#include "Math/GenVector/etaMax.h"
namespace ROOT {
namespace Math {
//__________________________________________________________________________________________
/**
Class describing a polar 2D coordinate system based on r and phi
Phi is restricted to be in the range [-PI,PI)
@ingroup GenVector
@sa Overview of the @ref GenVector "physics vector library"
*/
template <class T>
class Polar2D {
public :
typedef T Scalar;
static constexpr unsigned int Dimension = 2U;
/**
Default constructor with r=1,phi=0
*/
Polar2D() : fR(1.), fPhi(0) { }
/**
Construct from the polar coordinates: r and phi
*/
Polar2D(T r,T phi) : fR(r), fPhi(phi) { Restrict(); }
/**
Construct from any Vector or coordinate system implementing
R() and Phi()
*/
template <class CoordSystem >
explicit constexpr Polar2D( const CoordSystem & v ) :
fR(v.R() ), fPhi(v.Phi() ) { Restrict(); }
// for g++ 3.2 and 3.4 on 32 bits found that the compiler generated copy ctor and assignment are much slower
// re-implement them ( there is no no need to have them with g++4)
/**
copy constructor
*/
Polar2D(const Polar2D & v) :
fR(v.R() ), fPhi(v.Phi() ) { }
/**
assignment operator
*/
Polar2D & operator= (const Polar2D & v) {
fR = v.R();
fPhi = v.Phi();
return *this;
}
/**
Set internal data based on 2 Scalar numbers
*/
void SetCoordinates(Scalar r, Scalar phi)
{ fR=r; fPhi=phi; Restrict(); }
/**
get internal data into 2 Scalar numbers
*/
void GetCoordinates(Scalar& r, Scalar& phi) const {r=fR; phi=fPhi;}
Scalar R() const { return fR;}
Scalar Phi() const { return fPhi; }
Scalar X() const { using std::cos; return fR * cos(fPhi); }
Scalar Y() const { using std::sin; return fR * sin(fPhi); }
Scalar Mag2() const { return fR*fR;}
// setters (only for data members)
/**
set the r coordinate value keeping phi constant
*/
void SetR(const T & r) {
fR = r;
}
/**
set the phi coordinate value keeping r constant
*/
void SetPhi(const T & phi) {
fPhi = phi;
Restrict();
}
/**
set all values using cartesian coordinates
*/
void SetXY(Scalar a, Scalar b);
private:
inline static double pi() { return M_PI; }
/**
restrict abgle hi to be between -PI and PI
*/
inline void Restrict() {
using std::floor;
if (fPhi <= -pi() || fPhi > pi()) fPhi = fPhi - floor(fPhi / (2 * pi()) + .5) * 2 * pi();
}
public:
/**
scale by a scalar quantity - for polar coordinates r changes
*/
void Scale (T a) {
if (a < 0) {
Negate();
a = -a;
}
// angles do not change when scaling by a positive quantity
fR *= a;
}
/**
negate the vector
*/
void Negate ( ) {
fPhi = ( fPhi > 0 ? fPhi - pi() : fPhi + pi() );
}
/**
rotate the vector
*/
void Rotate(T angle) {
fPhi += angle;
Restrict();
}
// assignment operators
/**
generic assignment operator from any coordinate system
*/
template <class CoordSystem >
Polar2D & operator= ( const CoordSystem & c ) {
fR = c.R();
fPhi = c.Phi();
return *this;
}
/**
Exact equality
*/
bool operator==(const Polar2D & rhs) const {
return fR == rhs.fR && fPhi == rhs.fPhi;
}
bool operator!= (const Polar2D & rhs) const {return !(operator==(rhs));}
// ============= Compatibility section ==================
// The following make this coordinate system look enough like a CLHEP
// vector that an assignment member template can work with either
T x() const { return X();}
T y() const { return Y();}
// ============= Specializations for improved speed ==================
// (none)
#if defined(__MAKECINT__) || defined(G__DICTIONARY)
// ====== Set member functions for coordinates in other systems =======
void SetX(Scalar a);
void SetY(Scalar a);
#endif
private:
T fR;
T fPhi;
};
} // end namespace Math
} // end namespace ROOT
// move implementations here to avoid circle dependencies
#include "Math/GenVector/Cartesian2D.h"
#if defined(__MAKECINT__) || defined(G__DICTIONARY)
#include "Math/GenVector/GenVector_exception.h"
#endif
namespace ROOT {
namespace Math {
template <class T>
void Polar2D<T>::SetXY(Scalar a, Scalar b) {
*this = Cartesian2D<Scalar>(a, b);
}
#if defined(__MAKECINT__) || defined(G__DICTIONARY)
// ====== Set member functions for coordinates in other systems =======
template <class T>
void Polar2D<T>::SetX(Scalar a) {
GenVector_exception e("Polar2D::SetX() is not supposed to be called");
throw e;
Cartesian2D<Scalar> v(*this); v.SetX(a); *this = Polar2D<Scalar>(v);
}
template <class T>
void Polar2D<T>::SetY(Scalar a) {
GenVector_exception e("Polar2D::SetY() is not supposed to be called");
throw e;
Cartesian2D<Scalar> v(*this); v.SetY(a); *this = Polar2D<Scalar>(v);
}
#endif
} // end namespace Math
} // end namespace ROOT
#endif /* ROOT_Math_GenVector_Polar2D */