#include "EvtGenBase/EvtComplex.hh"
#include <iosfwd>
Go to the source code of this file.
|
EvtTensor4C | rotateEuler (const EvtTensor4C &e, double alpha, double beta, double gamma) |
|
EvtTensor4C | boostTo (const EvtTensor4C &e, const EvtVector4R p4) |
|
EvtTensor4C | boostTo (const EvtTensor4C &e, const EvtVector3R boost) |
|
EvtTensor4C | directProd (const EvtVector4C &c1, const EvtVector4C &c2) |
|
EvtTensor4C | directProd (const EvtVector4C &c1, const EvtVector4R &c2) |
|
EvtTensor4C | directProd (const EvtVector4R &c1, const EvtVector4R &c2) |
|
EvtTensor4C | dual (const EvtTensor4C &t2) |
|
EvtTensor4C | conj (const EvtTensor4C &t2) |
|
EvtTensor4C | cont22 (const EvtTensor4C &t1, const EvtTensor4C &t2) |
|
EvtTensor4C | cont11 (const EvtTensor4C &t1, const EvtTensor4C &t2) |
|
EvtTensor4C | operator* (const EvtTensor4C &t1, const EvtComplex &c) |
|
EvtTensor4C | operator* (const EvtComplex &c, const EvtTensor4C &t1) |
|
EvtTensor4C | operator* (const EvtTensor4C &t1, double d) |
|
EvtTensor4C | operator* (double d, const EvtTensor4C &t1) |
|
EvtComplex | cont (const EvtTensor4C &t1, const EvtTensor4C &t2) |
|
EvtTensor4C | operator+ (const EvtTensor4C &t1, const EvtTensor4C &t2) |
|
EvtTensor4C | operator- (const EvtTensor4C &t1, const EvtTensor4C &t2) |
|
◆ boostTo() [1/2]
◆ boostTo() [2/2]
◆ conj()
Definition at line 64 of file bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenBase/EvtTensor4C.cc.
411 {
413
414 int i,j;
415
416 for(i=0;i<4;i++){
417 for(j=0;j<4;j++){
419 }
420 }
421
422 return temp;
423}
EvtTensor4C conj(const EvtTensor4C &t2)
void set(int i, int j, const EvtComplex &c)
const EvtComplex & get(int i, int j) const
◆ cont()
◆ cont11()
◆ cont22()
◆ directProd() [1/3]
◆ directProd() [2/3]
◆ directProd() [3/3]
◆ dual()
Definition at line 63 of file bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenBase/EvtTensor4C.cc.
379 {
380
382
387
391
394
396
397 temp.
set(1,0,-temp.
get(0,1));
398 temp.
set(2,0,-temp.
get(0,2));
399 temp.
set(3,0,-temp.
get(0,3));
400
401 temp.
set(2,1,-temp.
get(1,2));
402 temp.
set(3,1,-temp.
get(1,3));
403
404 temp.
set(3,2,-temp.
get(2,3));
405
406 return temp;
407
408}
◆ operator*() [1/4]
◆ operator*() [2/4]
◆ operator*() [3/4]
◆ operator*() [4/4]
◆ operator+()
◆ operator-()
◆ rotateEuler()