Class Reference for E1039 Core & Analysis Software
PHG4VtxPoint.cc
Go to the documentation of this file.
1 #include "PHG4VtxPoint.h"
2 
3 
5 
6 using namespace std;
7 
8 void
9 PHG4VtxPoint::identify(ostream& os) const
10 {
11  os << "virtual PHG4VtxPoint base class"
12  << endl;
13 }
14 
15 bool
17 {
18  // note that ID is not compared here, per algorithm requirement in PHG4TruthInfoContainer::AddPrimaryVertex
19 
20  if (p.get_x() == get_x() && p.get_y() == get_y() &&
21  p.get_z() == get_z() && p.get_t() == get_t())
22  {
23  return true;
24  }
25  return false;
26 }
27 
ClassImp(PHG4VtxPoint) using namespace std
virtual double get_y() const
Definition: PHG4VtxPoint.h:21
virtual double get_x() const
Definition: PHG4VtxPoint.h:20
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4VtxPoint.cc:9
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 double get_t() const
Definition: PHG4VtxPoint.h:23