BOSS 7.0.7
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtVector4C.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed jointly
5// for the BaBar and CLEO collaborations. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/COPYRIGHT
9// Copyright (C) 1998 Caltech, UCSB
10//
11// Module: EvtGen/EvtVector4C.hh
12//
13// Description: Class for complex 4 vectors
14//
15// Modification history:
16//
17// DJL/RYD September 25, 1996 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EVTVECTOR4C_HH
22#define EVTVECTOR4C_HH
23
24//#include <iostream.h>
28
29#include <iosfwd>
30
32
33 friend EvtVector4C rotateEuler(const EvtVector4C& e,
34 double alpha,double beta,double gamma);
35 friend EvtVector4C boostTo(const EvtVector4C& e,
36 const EvtVector4R p4);
37 friend EvtVector4C boostTo(const EvtVector4C& e,
38 const EvtVector3R boost);
39 inline friend EvtVector4C operator*(double d,const EvtVector4C& v2);
40 inline friend EvtVector4C operator*(const EvtComplex& c,const EvtVector4C& v2);
41 inline friend EvtVector4C operator*(const EvtVector4C& v2,const EvtComplex& c);
42 inline friend EvtVector4C operator*(const EvtComplex& c,const EvtVector4R& v2);
43 inline friend EvtComplex operator*(const EvtVector4R& v1,const EvtVector4C& v2);
44 inline friend EvtComplex operator*(const EvtVector4C& v1,const EvtVector4R& v2);
45 inline friend EvtComplex operator*(const EvtVector4C& v1,const EvtVector4C& v2);
46 friend EvtVector4C operator+(const EvtVector4C& v1,const EvtVector4C& v2);
47 friend EvtVector4C operator-(const EvtVector4C& v1,const EvtVector4C& v2);
48
49public:
50
52 EvtVector4C(const EvtComplex&,const EvtComplex&,
53 const EvtComplex&,const EvtComplex&);
54 virtual ~EvtVector4C();
55 inline void set(int,const EvtComplex&);
56 inline void set(const EvtComplex&,const EvtComplex&,
57 const EvtComplex&,const EvtComplex&);
58 inline void set(double,double,double,double);
59 inline EvtVector4C(const EvtVector4R& v1);
60 inline const EvtComplex& get(int) const;
61 inline EvtComplex cont(const EvtVector4C& v4) const;
62 inline EvtVector4C conj() const;
63 EvtVector3C vec() const;
64 inline EvtVector4C& operator=(const EvtVector4C& v2);
65 inline EvtVector4C& operator-=(const EvtVector4C& v2);
66 inline EvtVector4C& operator+=(const EvtVector4C& v2);
67 inline EvtVector4C& operator*=(const EvtComplex& c);
68 void applyRotateEuler(double alpha,double beta,double gamma);
69 void applyBoostTo(const EvtVector4R& p4);
70 void applyBoostTo(const EvtVector3R& boost);
71 friend std::ostream& operator<<(std::ostream& s, const EvtVector4C& v);
72 double dot( const EvtVector4C& p2 );
73private:
74
75 EvtComplex v[4];
76
77};
78
80
81 v[0]=v2.v[0];
82 v[1]=v2.v[1];
83 v[2]=v2.v[2];
84 v[3]=v2.v[3];
85
86 return *this;
87}
88
90
91 v[0]+=v2.v[0];
92 v[1]+=v2.v[1];
93 v[2]+=v2.v[2];
94 v[3]+=v2.v[3];
95
96 return *this;
97}
98
100
101 v[0]-=v2.v[0];
102 v[1]-=v2.v[1];
103 v[2]-=v2.v[2];
104 v[3]-=v2.v[3];
105
106 return *this;
107}
108
109inline void EvtVector4C::set(int i,const EvtComplex& c){
110
111 v[i]=c;
112}
113
115
116 return EvtVector3C(v[1],v[2],v[3]);
117}
118
119inline void EvtVector4C::set(const EvtComplex& e,const EvtComplex& p1,
120 const EvtComplex& p2,const EvtComplex& p3){
121
122 v[0]=e; v[1]=p1; v[2]=p2; v[3]=p3;
123}
124
125inline void EvtVector4C::set(double e,double p1,
126 double p2,double p3){
127
128 v[0]=EvtComplex(e); v[1]=EvtComplex(p1); v[2]=EvtComplex(p2); v[3]=EvtComplex(p3);
129}
130
131inline const EvtComplex& EvtVector4C::get(int i) const {
132
133 return v[i];
134}
135
136inline EvtVector4C operator+(const EvtVector4C& v1,const EvtVector4C& v2) {
137
138 return EvtVector4C(v1)+=v2;
139}
140
141inline EvtVector4C operator-(const EvtVector4C& v1,const EvtVector4C& v2) {
142
143 return EvtVector4C(v1)-=v2;
144}
145
146inline EvtComplex EvtVector4C::cont(const EvtVector4C& v4) const {
147
148 return v[0]*v4.v[0]-v[1]*v4.v[1]-
149 v[2]*v4.v[2]-v[3]*v4.v[3];
150}
151
153
154 v[0]*=c;
155 v[1]*=c;
156 v[2]*=c;
157 v[3]*=c;
158
159 return *this;
160}
161
162inline EvtVector4C operator*(double d,const EvtVector4C& v2){
163
164 return EvtVector4C(v2.v[0]*d,v2.v[1]*d,v2.v[2]*d,v2.v[3]*d);
165}
166
167inline EvtVector4C operator*(const EvtComplex& c,const EvtVector4C& v2){
168
169 return EvtVector4C(v2)*=c;
170}
171
172inline EvtVector4C operator*(const EvtVector4C& v2,const EvtComplex& c){
173
174 return EvtVector4C(v2)*=c;
175}
176
177inline EvtVector4C operator*(const EvtComplex& c,const EvtVector4R& v2){
178
179 return EvtVector4C(c*v2.get(0),c*v2.get(1),c*v2.get(2),c*v2.get(3));
180}
181
183
184 v[0]=EvtComplex(v1.get(0)); v[1]=EvtComplex(v1.get(1));
185 v[2]=EvtComplex(v1.get(2)); v[3]=EvtComplex(v1.get(3));
186}
187
188inline EvtComplex operator*(const EvtVector4R& v1,const EvtVector4C& v2){
189
190 return v1.get(0)*v2.v[0]-v1.get(1)*v2.v[1]-
191 v1.get(2)*v2.v[2]-v1.get(3)*v2.v[3];
192}
193
194inline EvtComplex operator*(const EvtVector4C& v1,const EvtVector4R& v2){
195
196 return v1.v[0]*v2.get(0)-v1.v[1]*v2.get(1)-
197 v1.v[2]*v2.get(2)-v1.v[3]*v2.get(3);
198}
199
200inline EvtComplex operator*(const EvtVector4C& v1,const EvtVector4C& v2){
201
202 return v1.v[0]*v2.v[0]-v1.v[1]*v2.v[1]-
203 v1.v[2]*v2.v[2]-v1.v[3]*v2.v[3];
204}
205
207
208 return EvtVector4C(::conj(v[0]),::conj(v[1]),
209 ::conj(v[2]),::conj(v[3]));
210}
211
212#endif
213
EvtVector4C operator-(const EvtVector4C &v1, const EvtVector4C &v2)
Definition: EvtVector4C.hh:141
EvtVector4C operator+(const EvtVector4C &v1, const EvtVector4C &v2)
Definition: EvtVector4C.hh:136
EvtVector4C operator*(double d, const EvtVector4C &v2)
Definition: EvtVector4C.hh:162
const double alpha
XmlRpcServer s
Definition: HelloServer.cpp:11
virtual ~EvtVector4C()
Definition: EvtVector4C.cc:37
double dot(const EvtVector4C &p2)
void applyRotateEuler(double alpha, double beta, double gamma)
Definition: EvtVector4C.cc:136
EvtVector4C conj() const
Definition: EvtVector4C.hh:206
friend EvtVector4C boostTo(const EvtVector4C &e, const EvtVector4R p4)
Definition: EvtVector4C.cc:55
void set(int, const EvtComplex &)
Definition: EvtVector4C.hh:109
EvtVector4C & operator+=(const EvtVector4C &v2)
Definition: EvtVector4C.hh:89
friend std::ostream & operator<<(std::ostream &s, const EvtVector4C &v)
friend EvtVector4C operator-(const EvtVector4C &v1, const EvtVector4C &v2)
Definition: EvtVector4C.hh:141
friend EvtVector4C operator+(const EvtVector4C &v1, const EvtVector4C &v2)
Definition: EvtVector4C.hh:136
const EvtComplex & get(int) const
Definition: EvtVector4C.hh:131
EvtVector4C & operator-=(const EvtVector4C &v2)
Definition: EvtVector4C.hh:99
friend EvtVector4C rotateEuler(const EvtVector4C &e, double alpha, double beta, double gamma)
Definition: EvtVector4C.cc:46
friend EvtVector4C operator*(double d, const EvtVector4C &v2)
Definition: EvtVector4C.hh:162
void applyBoostTo(const EvtVector4R &p4)
Definition: EvtVector4C.cc:73
EvtVector4C & operator=(const EvtVector4C &v2)
Definition: EvtVector4C.hh:79
EvtVector4C & operator*=(const EvtComplex &c)
Definition: EvtVector4C.hh:152
EvtComplex cont(const EvtVector4C &v4) const
Definition: EvtVector4C.hh:146
EvtVector3C vec() const
Definition: EvtVector4C.hh:114
double get(int i) const
Definition: EvtVector4R.hh:179