BOSS 7.0.8
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtTensor4C.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/EvtTensor4C.hh
12//
13// Description: Class to handle complex tensor manipulation
14//
15// Modification history:
16//
17// DJL/RYD September 25, 1996 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EvtTensor4C_HH
22#define EvtTensor4C_HH
23
24//#include <iostream.h>
26
27//Class to handle 4D complex valued tensors.
28class EvtTensor4C;
29class EvtVector4C;
30class EvtVector4R;
31class EvtVector3R;
32#include <iosfwd>
34 double alpha,double beta,double gamma);
35EvtTensor4C boostTo(const EvtTensor4C& e, const EvtVector4R p4);
36EvtTensor4C boostTo(const EvtTensor4C& e, const EvtVector3R boost);
38EvtTensor4C directProd(const EvtVector4C& c1,const EvtVector4R& c2);
39EvtTensor4C directProd(const EvtVector4R& c1,const EvtVector4R& c2);
40EvtTensor4C dual(const EvtTensor4C& t2);
42EvtTensor4C cont22(const EvtTensor4C& t1,const EvtTensor4C& t2);
43EvtTensor4C cont11(const EvtTensor4C& t1,const EvtTensor4C& t2);
46EvtTensor4C operator*(const EvtTensor4C& t1,double d);
47EvtTensor4C operator*(double d,const EvtTensor4C& t1);
48EvtComplex cont(const EvtTensor4C& t1,const EvtTensor4C& t2);
49EvtTensor4C operator+(const EvtTensor4C& t1,const EvtTensor4C& t2);
50inline EvtTensor4C operator-(const EvtTensor4C& t1,const EvtTensor4C& t2);
51
53
54 friend EvtTensor4C rotateEuler(const EvtTensor4C& e,
55 double alpha,double beta,double gamma);
56 friend EvtTensor4C boostTo(const EvtTensor4C& e,
57 const EvtVector4R p4);
58 friend EvtTensor4C boostTo(const EvtTensor4C& e,
59 const EvtVector3R boost);
60 friend EvtTensor4C directProd(const EvtVector4C& c1,const EvtVector4C& c2);
61 friend EvtTensor4C directProd(const EvtVector4C& c1,const EvtVector4R& c2);
62 friend EvtTensor4C directProd(const EvtVector4R& c1,const EvtVector4R& c2);
63 friend EvtTensor4C dual(const EvtTensor4C& t2);
64 friend EvtTensor4C conj(const EvtTensor4C& t2);
65 friend EvtTensor4C cont22(const EvtTensor4C& t1,const EvtTensor4C& t2);
66 friend EvtTensor4C cont11(const EvtTensor4C& t1,const EvtTensor4C& t2);
67 friend EvtTensor4C operator*(const EvtTensor4C& t1,const EvtComplex& c);
68 friend EvtTensor4C operator*(const EvtComplex& c,const EvtTensor4C& t1);
69 friend EvtTensor4C operator*(const EvtTensor4C& t1,double d);
70 friend EvtTensor4C operator*(double d,const EvtTensor4C& t1);
71 friend EvtComplex cont(const EvtTensor4C& t1,const EvtTensor4C& t2);
72 friend EvtTensor4C operator+(const EvtTensor4C& t1,const EvtTensor4C& t2);
73 friend EvtTensor4C operator-(const EvtTensor4C& t1,const EvtTensor4C& t2);
74
75public:
77
78 EvtTensor4C(double t00,double t11,double t22, double t33) { setdiag(t00,t11,t22,t33);}
79
80
81 EvtTensor4C(const EvtTensor4C& t1 );
82 virtual ~EvtTensor4C();
85 EvtTensor4C& operator*=(double d);
86 EvtTensor4C& addDirProd(const EvtVector4R& p1,const EvtVector4R& p2);
87 static const EvtTensor4C& g();
88 inline void set(int i,int j,const EvtComplex& c);
89 void setdiag(double t00,double t11,double t22, double t33);
90 inline const EvtComplex& get(int i, int j) const;
91 inline EvtComplex trace() const;
92 void zero();
93 void applyRotateEuler(double alpha,double beta,double gamma);
94 void applyBoostTo(const EvtVector4R& p4);
95 void applyBoostTo(const EvtVector3R& boost);
96 friend std::ostream& operator<<(std::ostream& s, const EvtTensor4C& t);
99 EvtTensor4C conj() const;
100 EvtVector4C cont1(const EvtVector4C& v4) const;
101 EvtVector4C cont2(const EvtVector4C& v4) const;
102 EvtVector4C cont1(const EvtVector4R& v4) const;
103 EvtVector4C cont2(const EvtVector4R& v4) const;
104
105
106private:
107
108 EvtComplex t[4][4];
109
110};
111
112inline EvtTensor4C operator+(const EvtTensor4C& t1,const EvtTensor4C& t2){
113
114 return EvtTensor4C(t1)+=t2;
115}
116
117inline EvtTensor4C operator-(const EvtTensor4C& t1,const EvtTensor4C& t2){
118
119 return EvtTensor4C(t1)-=t2;
120}
121
122inline void EvtTensor4C::set(int i,int j,const EvtComplex& c){
123 t[i][j]=c;
124}
125
126inline const EvtComplex& EvtTensor4C::get(int i,int j) const{
127 return t[i][j];
128}
129
131 return t[0][0]-t[1][1]-t[2][2]-t[3][3];
132}
133
134#endif
135
EvtTensor4C operator-(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.hh:117
EvtTensor4C dual(const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:379
EvtTensor4C rotateEuler(const EvtTensor4C &e, double alpha, double beta, double gamma)
Definition: EvtTensor4C.cc:80
EvtComplex cont(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:312
EvtTensor4C operator+(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.hh:112
EvtTensor4C cont22(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:426
EvtTensor4C cont11(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:443
EvtTensor4C operator*(const EvtTensor4C &t1, const EvtComplex &c)
Definition: EvtTensor4C.cc:275
EvtTensor4C conj(const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:411
EvtTensor4C directProd(const EvtVector4C &c1, const EvtVector4C &c2)
Definition: EvtTensor4C.cc:327
EvtTensor4C boostTo(const EvtTensor4C &e, const EvtVector4R p4)
Definition: EvtTensor4C.cc:89
const double alpha
XmlRpcServer s
Definition: HelloServer.cpp:11
friend EvtTensor4C operator-(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.hh:117
friend EvtTensor4C dual(const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:379
void setdiag(double t00, double t11, double t22, double t33)
Definition: EvtTensor4C.cc:218
friend EvtTensor4C rotateEuler(const EvtTensor4C &e, double alpha, double beta, double gamma)
Definition: EvtTensor4C.cc:80
friend EvtComplex cont(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:312
EvtComplex trace() const
Definition: EvtTensor4C.hh:130
void set(int i, int j, const EvtComplex &c)
Definition: EvtTensor4C.hh:122
const EvtComplex & get(int i, int j) const
Definition: EvtTensor4C.hh:126
EvtTensor4C & operator=(const EvtTensor4C &t1)
Definition: EvtTensor4C.cc:55
EvtTensor4C & operator-=(const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:250
virtual ~EvtTensor4C()
Definition: EvtTensor4C.cc:45
EvtVector4C cont1(const EvtVector4C &v4) const
Definition: EvtTensor4C.cc:461
static const EvtTensor4C & g()
Definition: EvtTensor4C.cc:47
void applyBoostTo(const EvtVector4R &p4)
Definition: EvtTensor4C.cc:107
friend EvtTensor4C operator+(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.hh:112
friend std::ostream & operator<<(std::ostream &s, const EvtTensor4C &t)
EvtTensor4C & addDirProd(const EvtVector4R &p1, const EvtVector4R &p2)
Definition: EvtTensor4C.cc:366
friend EvtTensor4C cont22(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:426
EvtTensor4C & operator*=(const EvtComplex &c)
Definition: EvtTensor4C.cc:263
friend EvtTensor4C cont11(const EvtTensor4C &t1, const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:443
EvtVector4C cont2(const EvtVector4C &v4) const
Definition: EvtTensor4C.cc:474
EvtTensor4C & operator+=(const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:238
friend EvtTensor4C operator*(const EvtTensor4C &t1, const EvtComplex &c)
Definition: EvtTensor4C.cc:275
void applyRotateEuler(double alpha, double beta, double gamma)
Definition: EvtTensor4C.cc:517
friend EvtTensor4C conj(const EvtTensor4C &t2)
Definition: EvtTensor4C.cc:411
friend EvtTensor4C directProd(const EvtVector4C &c1, const EvtVector4C &c2)
Definition: EvtTensor4C.cc:327
friend EvtTensor4C boostTo(const EvtTensor4C &e, const EvtVector4R p4)
Definition: EvtTensor4C.cc:89
EvtTensor4C(double t00, double t11, double t22, double t33)
Definition: EvtTensor4C.hh:78