EICd
EIC data model
All Classes Namespaces Files Functions Variables Typedefs Friends
VectorXYZT.h
Go to the documentation of this file.
1 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2 
3 #ifndef EICD_VectorXYZT_H
4 #define EICD_VectorXYZT_H
5 
6 #include <cmath>
7 #include <tuple>
8 #include <ostream>
9 
10 namespace eic {
11 
12 
13 class VectorXYZT {
14 public:
15  double x{}; ///< [mm] or [GeV]
16  double y{};
17  double z{};
18  double t{}; ///< [ns] or [GeV]
19 
20  VectorXYZT() : x{0}, y{0}, z{0}, t{0} {}
21  VectorXYZT(double xx, double yy, double zz, double tt) : x{xx}, y{yy}, z{zz}, t{tt} {}
22  double& operator[](unsigned i) {return *(&x + i);}
23  const double& operator[](unsigned i) const {return *(&x + i);}
24  double mag() const {return std::hypot(x, y, z);}
25  double r() const {return mag();}
26  double theta() const {return acos(z/mag());}
27  double phi() const {return atan2(y,x);}
28  double eta() const {return -log(tan(0.5*theta()));} double energy() const {return t;}
29  double mass() const {return sqrt(t*t - x*x - y*y - z*z);}
30  operator std::tuple<double, double, double, double>() {return {x, y, z, t};}
31  double dot(const VectorXYZT& rhs) const {return t*rhs.t - x*rhs.x - y*rhs.y - z*rhs.z;}
32  VectorXYZT add(const VectorXYZT& rhs) const {return {x+rhs.x, y+rhs.y, z+rhs.z, t+rhs.t};}
33  VectorXYZT subtract(const VectorXYZT& rhs) const {return {x-rhs.x, y-rhs.y, z-rhs.z, t-rhs.t};}
34  VectorXYZT scale(double f) const {return {f*x, f*y, f*z, f*t};}
35 
36 
37 };
38 
39 inline std::ostream& operator<<(std::ostream& o, const eic::VectorXYZT& value) {
40  o << value.x << " ";
41  o << value.y << " ";
42  o << value.z << " ";
43  o << value.t << " ";
44 
45  return o;
46 }
47 
48 } // namespace eic
49 
50 
51 
52 #endif
eic::operator<<
std::ostream & operator<<(std::ostream &o, const ConstBasicParticle &value)
Definition: BasicParticle.cc:102
eic::VectorXYZT::t
double t
[ns] or [GeV]
Definition: VectorXYZT.h:18
eic::VectorXYZT::mag
double mag() const
Definition: VectorXYZT.h:24
eic::VectorXYZT::theta
double theta() const
Definition: VectorXYZT.h:26
eic::VectorXYZT::x
double x
[mm] or [GeV]
Definition: VectorXYZT.h:15
eic
Definition: BasicParticle.cc:13
eic::VectorXYZT::energy
double energy() const
Definition: VectorXYZT.h:28
eic::VectorXYZT
Definition: VectorXYZT.h:13
eic::VectorXYZT::operator[]
const double & operator[](unsigned i) const
Definition: VectorXYZT.h:23
eic::VectorXYZT::y
double y
Definition: VectorXYZT.h:16
eic::VectorXYZT::dot
double dot(const VectorXYZT &rhs) const
Definition: VectorXYZT.h:31
eic::VectorXYZT::scale
VectorXYZT scale(double f) const
Definition: VectorXYZT.h:34
eic::VectorXYZT::z
double z
Definition: VectorXYZT.h:17
eic::VectorXYZT::r
double r() const
Definition: VectorXYZT.h:25
eic::VectorXYZT::operator[]
double & operator[](unsigned i)
Definition: VectorXYZT.h:22
eic::VectorXYZT::add
VectorXYZT add(const VectorXYZT &rhs) const
Definition: VectorXYZT.h:32
eic::VectorXYZT::VectorXYZT
VectorXYZT()
Definition: VectorXYZT.h:20
eic::VectorXYZT::mass
double mass() const
Definition: VectorXYZT.h:29
eic::VectorXYZT::eta
double eta() const
Definition: VectorXYZT.h:28
eic::VectorXYZT::phi
double phi() const
Definition: VectorXYZT.h:27
eic::VectorXYZT::VectorXYZT
VectorXYZT(double xx, double yy, double zz, double tt)
Definition: VectorXYZT.h:21
eic::VectorXYZT::subtract
VectorXYZT subtract(const VectorXYZT &rhs) const
Definition: VectorXYZT.h:33