#include <iostream>
#include "EvtGenBase/EvtComplex.hh"
Go to the source code of this file.
|
EvtTensor3C | rotateEuler (const EvtTensor3C &v, double phi, double theta, double ksi) |
|
EvtTensor3C | operator* (const EvtComplex &c, const EvtTensor3C &t2) |
|
EvtTensor3C | operator* (const double d, const EvtTensor3C &t2) |
|
EvtTensor3C | operator* (const EvtTensor3C &t2, const EvtComplex &c) |
|
EvtTensor3C | operator* (const EvtTensor3C &t2, const double d) |
|
EvtTensor3C | operator+ (const EvtTensor3C &t1, const EvtTensor3C &t2) |
|
EvtTensor3C | operator- (const EvtTensor3C &t1, const EvtTensor3C &t2) |
|
EvtTensor3C | directProd (const EvtVector3C &c1, const EvtVector3C &c2) |
|
EvtTensor3C | directProd (const EvtVector3C &c1, const EvtVector3R &c2) |
|
EvtTensor3C | directProd (const EvtVector3R &c1, const EvtVector3R &c2) |
|
EvtTensor3C | conj (const EvtTensor3C &t2) |
|
EvtTensor3C | cont22 (const EvtTensor3C &t1, const EvtTensor3C &t2) |
|
EvtTensor3C | cont11 (const EvtTensor3C &t1, const EvtTensor3C &t2) |
|
EvtTensor3C | eps (const EvtVector3R &v) |
|
std::ostream & | operator<< (std::ostream &c, const EvtTensor3C &v) |
|
◆ conj()
Definition at line 70 of file EvtTensor3C.cc.
204 {
206
207 int i,j;
208
209 for(i=0;i<3;i++){
210 for(j=0;j<3;j++){
212 }
213 }
214
215 return temp;
216}
EvtTensor3C conj(const EvtTensor3C &t2)
const EvtComplex & get(int i, int j) const
void set(int i, int j, const EvtComplex &c)
◆ cont11()
Definition at line 74 of file EvtTensor3C.cc.
236 {
238
239 int i,j;
241
242 for(i=0;i<3;i++){
243 for(j=0;j<3;j++){
247 }
248 }
249
250 return temp;
251}
◆ cont22()
Definition at line 72 of file EvtTensor3C.cc.
219 {
221
222 int i,j;
224
225 for(i=0;i<3;i++){
226 for(j=0;j<3;j++){
230 }
231 }
232
233 return temp;
234}
◆ directProd() [1/3]
Definition at line 67 of file EvtTensor3C.cc.
165 {
167 int i,j;
168
169 for (i=0;i<3;i++) {
170 for (j=0;j<3;j++) {
172 }
173 }
174 return temp;
175}
const EvtComplex & get(int) const
◆ directProd() [2/3]
Definition at line 68 of file EvtTensor3C.cc.
178 {
180 int i,j;
181
182 for (i=0;i<3;i++) {
183 for (j=0;j<3;j++) {
185 }
186 }
187 return temp;
188}
◆ directProd() [3/3]
Definition at line 69 of file EvtTensor3C.cc.
191 {
193 int i,j;
194
195 for (i=0;i<3;i++) {
196 for (j=0;j<3;j++) {
198 }
199 }
200 return temp;
201}
◆ eps()
Definition at line 76 of file EvtTensor3C.cc.
307 {
308
310
311 temp.t[0][0]=0.0;
312 temp.t[1][1]=0.0;
313 temp.t[2][2]=0.0;
314
315 temp.t[0][1]=
v.get(2);
316 temp.t[0][2]=-
v.get(1);
317
318 temp.t[1][0]=-
v.get(2);
319 temp.t[1][2]=
v.get(0);
320
321 temp.t[2][0]=
v.get(1);
322 temp.t[2][1]=-
v.get(0);
323
324 return temp;
325
326}
**********Class see also m_nmax DOUBLE PRECISION m_amel DOUBLE PRECISION m_x2 DOUBLE PRECISION m_alfinv DOUBLE PRECISION m_Xenph INTEGER m_KeyWtm INTEGER m_idyfs DOUBLE PRECISION m_zini DOUBLE PRECISION m_q2 DOUBLE PRECISION m_Wt_KF DOUBLE PRECISION m_WtCut INTEGER m_KFfin *COMMON c_KarLud $ !Input CMS energy[GeV] $ !CMS energy after beam spread beam strahlung[GeV] $ !Beam energy spread[GeV] $ !z boost due to beam spread $ !electron beam mass *ff pair spectrum $ !minimum v
Referenced by EvtbTosllVectorAmp::CalcAmp(), TRunge::Eps(), EvtConExc::gamHXSection(), EvtConExc::gamHXSection_er(), intersection(), TRunge::Propagate_QC(), and EvtSVVHelAmp::SVVHel().
◆ operator*() [1/4]
◆ operator*() [2/4]
◆ operator*() [3/4]
◆ operator*() [4/4]
◆ operator+()
◆ operator-()
◆ operator<<()
std::ostream & operator<< |
( |
std::ostream & |
c, |
|
|
const EvtTensor3C & |
v |
|
) |
| |
◆ rotateEuler()
Definition at line 55 of file EvtTensor3C.cc.
349 {
350
352 tmp.applyRotateEuler(
alpha,beta,gamma);
353 return tmp;
354
355}