Newer
Older
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
//--------------------------------------------------------------------------
//
// Environment:
// This software is part of the EvtGen package developed jointly
// for the BaBar and CLEO collaborations. If you use all or part
// of it, please give an appropriate acknowledgement.
//
// Copyright Information: See EvtGen/COPYRIGHT
// Copyright (C) 1998 Caltech, UCSB
//
// Module: EvtGen/EvtVector4R.hh
//
// Description: Class to describe complex numbers
//
// Modification history:
//
// RYD December 5, 1998 Created
//
//------------------------------------------------------------------------
#ifndef EVTCOMPLEX_HH
#define EVTCOMPLEX_HH
#include <iostream>
#include <math.h>
#include "PspGen/EvtConst.hh"
class EvtComplex {
inline friend EvtComplex operator*(double d,const EvtComplex& c);
inline friend EvtComplex operator*(const EvtComplex& c,double d);
inline friend EvtComplex operator/(const EvtComplex& c,double d);
inline friend EvtComplex operator/(double d,const EvtComplex& c);
inline friend EvtComplex operator*(const EvtComplex& c1,const EvtComplex& c2);
inline friend EvtComplex operator/(const EvtComplex& c1,const EvtComplex& c2);
inline friend EvtComplex operator+(const EvtComplex& c1,const EvtComplex& c2);
inline friend EvtComplex operator-(const EvtComplex& c1,const EvtComplex& c2);
inline friend EvtComplex operator-(const EvtComplex& c);
inline friend EvtComplex conj(const EvtComplex& c);
inline friend double abs(const EvtComplex& c);
inline friend double abs2(const EvtComplex& c);
inline friend double arg(const EvtComplex& c);
inline friend double real(const EvtComplex& c);
inline friend double imag(const EvtComplex& c);
inline friend EvtComplex exp(const EvtComplex& c);
friend std::ostream& operator<<(std::ostream& s, const EvtComplex& c);
public:
EvtComplex():_rpart(0.0),_ipart(0.0){}
EvtComplex(double rpart,double ipart=0.0):_rpart(rpart),_ipart(ipart){}
EvtComplex(const EvtComplex& c):_rpart(c._rpart),_ipart(c._ipart){}
inline EvtComplex& operator*=(double d);
inline EvtComplex& operator/=(double d);
EvtComplex& operator*=(EvtComplex c);
EvtComplex& operator/=(EvtComplex c);
inline EvtComplex& operator=(const EvtComplex& c);
inline EvtComplex& operator+=(const EvtComplex& c);
inline EvtComplex& operator-=(const EvtComplex& c);
inline EvtComplex& operator+=(double d);
inline EvtComplex& operator-=(double d);
inline int operator==(const EvtComplex c);
inline int operator!=(const EvtComplex c);
private:
double _rpart,_ipart;
};
typedef EvtComplex* EvtComplexPtr;
typedef EvtComplexPtr* EvtComplexPtrPtr;
typedef EvtComplexPtrPtr* EvtComplexPtrPtrPtr;
EvtComplex& EvtComplex::operator=(const EvtComplex& c){
_rpart=c._rpart;
_ipart=c._ipart;
return *this;
}
EvtComplex& EvtComplex::operator+=(const EvtComplex& c){
_rpart+=c._rpart;
_ipart+=c._ipart;
return *this;
}
EvtComplex& EvtComplex::operator-=(const EvtComplex& c){
_rpart-=c._rpart;
_ipart-=c._ipart;
return *this;
}
EvtComplex& EvtComplex::operator+=(double d){
_rpart+=d;
return *this;
}
EvtComplex& EvtComplex::operator-=(double d){
_rpart-=d;
return *this;
}
EvtComplex operator*(double d,const EvtComplex& c){
return EvtComplex(c._rpart*d,c._ipart*d);
}
EvtComplex operator*(const EvtComplex& c, double d){
return EvtComplex(c._rpart*d,c._ipart*d);
}
EvtComplex operator/(const EvtComplex& c,double d){
return EvtComplex(c._rpart/d,c._ipart/d);
}
EvtComplex& EvtComplex::operator*=(double d){
_rpart*=d;
_ipart*=d;
return *this;
}
EvtComplex& EvtComplex::operator/=(double d){
_rpart/=d;
_ipart/=d;
return *this;
}
EvtComplex operator/(double d,const EvtComplex& c) {
double Num=d/(c._rpart*c._rpart+c._ipart*c._ipart);
return EvtComplex( Num*c._rpart, -Num*c._ipart );
}
EvtComplex operator/(const EvtComplex& c1,const EvtComplex& c2){
double inv=1.0/(c2._rpart*c2._rpart+c2._ipart*c2._ipart);
return EvtComplex(inv*(c1._rpart*c2._rpart+c1._ipart*c2._ipart),
inv*(c1._ipart*c2._rpart-c1._rpart*c2._ipart));
}
EvtComplex operator*(const EvtComplex& c1,const EvtComplex& c2){
return EvtComplex(c1._rpart*c2._rpart-c1._ipart*c2._ipart,
c1._rpart*c2._ipart+c1._ipart*c2._rpart);
}
EvtComplex operator-(const EvtComplex& c1,const EvtComplex& c2){
return EvtComplex(c1._rpart-c2._rpart,c1._ipart-c2._ipart);
}
EvtComplex operator+(const EvtComplex& c1,const EvtComplex& c2){
return EvtComplex(c1._rpart+c2._rpart,c1._ipart+c2._ipart);
}
int EvtComplex::operator==(const EvtComplex c){
return _rpart==c._rpart&&_ipart==c._ipart;
}
int EvtComplex::operator!=(const EvtComplex c){
return _rpart!=c._rpart||_ipart!=c._ipart;
}
EvtComplex operator-(const EvtComplex& c){
return EvtComplex(-c._rpart,-c._ipart);
}
EvtComplex conj(const EvtComplex& c){
return EvtComplex(c._rpart,-c._ipart);
}
double abs(const EvtComplex& c){
double c2=c._rpart*c._rpart+c._ipart*c._ipart;
if (c2<=0.0) return 0.0;
return sqrt(c2);
}
double abs2(const EvtComplex& c){
return c._rpart*c._rpart+c._ipart*c._ipart;
}
double arg(const EvtComplex& c){
if ((c._rpart==0)&&(c._ipart==0)) {return 0.0;}
if (c._rpart==0){
if (c._ipart>0){
return EvtConst::pi/2;
} else {
return -EvtConst::pi/2;
}
} else {
return atan2(c._ipart,c._rpart);
}
}
double real(const EvtComplex& c){
return c._rpart;
}
double imag(const EvtComplex& c){
return c._ipart;
}
EvtComplex exp(const EvtComplex& c){
return exp(c._rpart)*EvtComplex(cos(c._ipart),sin(c._ipart));
}
#endif