#include "EvtComplex.hh"
#include "EvtVector3R.hh"
#include <iosfwd>
Go to the source code of this file.
◆ operator*() [1/6]
◆ operator*() [2/6]
◆ operator*() [3/6]
◆ operator*() [4/6]
Definition at line 157 of file EvtVector3C.hh.
157 {
158
159 return v1.v[0] * v2.v[0] + v1.v[1] * v2.v[1] + v1.v[2] * v2.v[2];
160}
◆ operator*() [5/6]
Definition at line 152 of file EvtVector3C.hh.
152 {
153
154 return v1.v[0] * v2.
get( 0 ) + v1.v[1] * v2.
get( 1 ) + v1.v[2] * v2.
get( 2 );
155}
◆ operator*() [6/6]
Definition at line 147 of file EvtVector3C.hh.
147 {
148
149 return v1.
get( 0 ) * v2.v[0] + v1.
get( 1 ) * v2.v[1] + v1.
get( 2 ) * v2.v[2];
150}
◆ operator+()
◆ operator-()