Class Reference for E1039 Core & Analysis Software
PHG4VtxPoint.h
Go to the documentation of this file.
1 #ifndef PHG4VTXPOINT_H__
2 #define PHG4VTXPOINT_H__
3 
4 #include <phool/PHObject.h>
5 #include <cmath>
6 #include <climits>
7 
8 
9 class PHG4VtxPoint: public PHObject
10 {
11  public:
12  virtual ~PHG4VtxPoint() {}
13 
14  virtual void set_x(const double r) {}
15  virtual void set_y(const double r) {}
16  virtual void set_z(const double r) {}
17  virtual void set_t(const double r) {}
18  virtual void set_id(const int i) {}
19 
20  virtual double get_x() const {return NAN;}
21  virtual double get_y() const {return NAN;}
22  virtual double get_z() const {return NAN;}
23  virtual double get_t() const {return NAN;}
24  virtual int get_id() const {return INT_MIN;}
25 
26  virtual void identify(std::ostream& os = std::cout) const;
27 
29  bool operator== (const PHG4VtxPoint &) const ;
30 
31 
32  protected:
34  ClassDef(PHG4VtxPoint,1)
35 
36 };
37 
38 #endif
virtual double get_y() const
Definition: PHG4VtxPoint.h:21
virtual double get_x() const
Definition: PHG4VtxPoint.h:20
virtual int get_id() const
Definition: PHG4VtxPoint.h:24
virtual ~PHG4VtxPoint()
Definition: PHG4VtxPoint.h:12
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4VtxPoint.cc:9
virtual void set_t(const double r)
Definition: PHG4VtxPoint.h:17
virtual void set_y(const double r)
Definition: PHG4VtxPoint.h:15
bool operator==(const PHG4VtxPoint &) const
comparison of vertex value only, not on the id, per algorithm requirement in PHG4TruthInfoContainer::...
Definition: PHG4VtxPoint.cc:16
virtual double get_z() const
Definition: PHG4VtxPoint.h:22
virtual void set_z(const double r)
Definition: PHG4VtxPoint.h:16
virtual void set_x(const double r)
Definition: PHG4VtxPoint.h:14
virtual void set_id(const int i)
Definition: PHG4VtxPoint.h:18
virtual double get_t() const
Definition: PHG4VtxPoint.h:23