Class Reference for E1039 Core & Analysis Software
PHG4VtxPointv1.h
Go to the documentation of this file.
1 #ifndef PHG4VTXPOINTV1_H__
2 #define PHG4VTXPOINTV1_H__
3 
4 #include "PHG4VtxPoint.h"
5 #include <cmath> // def of NAN
6 
8 {
9  public:
11  vx(NAN),
12  vy(NAN),
13  vz(NAN),
14  t0(NAN),
15  id(INT_MIN)
16  {}
17 
19  vx(vtx->get_x()),
20  vy(vtx->get_y()),
21  vz(vtx->get_z()),
22  t0(vtx->get_t()),
23  id(vtx->get_id())
24  {}
25 
26  PHG4VtxPointv1(const double x, const double y, const double z, const double t, const int id_value = INT_MIN):
27  vx(x),
28  vy(y),
29  vz(z),
30  t0(t),
31  id(id_value)
32  {}
33 
34  virtual ~PHG4VtxPointv1() {}
35 
36  void set_x(const double r) {vx = r;}
37  void set_y(const double r) {vy = r;}
38  void set_z(const double r) {vz = r;}
39  void set_t(const double r) {t0 = r;}
40  void set_id(const int i) {id = i;}
41 
42  double get_x() const {return vx;}
43  double get_y() const {return vy;}
44  double get_z() const {return vz;}
45  double get_t() const {return t0;}
46  int get_id() const {return id;}
47 
48  void identify(std::ostream& os = std::cout) const;
49 
50  protected:
51 
52  double vx;
53  double vy;
54  double vz;
55  double t0;
56 
58  int id;
59 
60  ClassDef(PHG4VtxPointv1,2)
61 };
62 
63 
64 
65 
66 #endif
double get_z() const
double get_y() const
int id
id tag for this vertex
PHG4VtxPointv1(const PHG4VtxPoint *vtx)
int get_id() const
void set_y(const double r)
void set_t(const double r)
void set_z(const double r)
PHG4VtxPointv1(const double x, const double y, const double z, const double t, const int id_value=INT_MIN)
double get_t() const
void set_x(const double r)
virtual ~PHG4VtxPointv1()
double get_x() const
void set_id(const int i)
void identify(std::ostream &os=std::cout) const