BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Evt3Rank3C.hh File Reference
#include "EvtComplex.hh"
#include <iostream>

Go to the source code of this file.

Classes

class  Evt3Rank3C

Functions

Evt3Rank3C operator* (const EvtComplex &c, const Evt3Rank3C &t2)
Evt3Rank3C operator* (const double d, const Evt3Rank3C &t2)
Evt3Rank3C operator* (const Evt3Rank3C &t2, const EvtComplex &c)
Evt3Rank3C operator* (const Evt3Rank3C &t2, const double d)
Evt3Rank3C operator+ (const Evt3Rank3C &t1, const Evt3Rank3C &t2)
Evt3Rank3C operator- (const Evt3Rank3C &t1, const Evt3Rank3C &t2)
Evt3Rank3C directProd (const EvtVector3C &c1, const EvtVector3C &c2, const EvtVector3C &c3)
Evt3Rank3C conj (const Evt3Rank3C &t2)

Function Documentation

◆ conj()

◆ directProd()

◆ operator*() [1/4]

Evt3Rank3C operator* ( const double d,
const Evt3Rank3C & t2 )
inline

Definition at line 87 of file Evt3Rank3C.hh.

87 {
88 return Evt3Rank3C( t2 ) *= d;
89}

◆ operator*() [2/4]

Evt3Rank3C operator* ( const Evt3Rank3C & t2,
const double d )
inline

Definition at line 95 of file Evt3Rank3C.hh.

95 {
96 return Evt3Rank3C( t2 ) *= d;
97}

◆ operator*() [3/4]

Evt3Rank3C operator* ( const Evt3Rank3C & t2,
const EvtComplex & c )
inline

Definition at line 91 of file Evt3Rank3C.hh.

91 {
92 return Evt3Rank3C( t2 ) *= c;
93}

◆ operator*() [4/4]

Evt3Rank3C operator* ( const EvtComplex & c,
const Evt3Rank3C & t2 )
inline

Definition at line 83 of file Evt3Rank3C.hh.

83 {
84 return Evt3Rank3C( t2 ) *= c;
85}

◆ operator+()

Evt3Rank3C operator+ ( const Evt3Rank3C & t1,
const Evt3Rank3C & t2 )
inline

Definition at line 99 of file Evt3Rank3C.hh.

99 {
100 return Evt3Rank3C( t1 ) += t2;
101}

◆ operator-()

Evt3Rank3C operator- ( const Evt3Rank3C & t1,
const Evt3Rank3C & t2 )
inline

Definition at line 103 of file Evt3Rank3C.hh.

103 {
104 return Evt3Rank3C( t1 ) -= t2;
105}