Class Reference for E1039 Core & Analysis Software
PHG4Particle.cc
Go to the documentation of this file.
1 #include "PHG4Particle.h"
2 
4 
5 using namespace std;
6 
7 void
8 PHG4Particle::identify(ostream& os) const
9 {
10  cout << "calling virtual PHG4Particle base class" << endl;
11  return;
12 }
13 
14 bool
16 {
17  if (get_pid() == p.get_pid() &&
18  get_px() == p.get_px() &&
19  get_py() == p.get_py() &&
20  get_pz() == p.get_pz())
21  {
22  return true;
23  }
24  return false;
25 }
ClassImp(PHG4Particle) using namespace std
virtual int get_pid() const
Definition: PHG4Particle.h:14
virtual double get_px() const
Definition: PHG4Particle.h:16
bool operator==(const PHG4Particle &p) const
Definition: PHG4Particle.cc:15
void identify(std::ostream &os=std::cout) const
Definition: PHG4Particle.cc:8
virtual double get_py() const
Definition: PHG4Particle.h:17
virtual double get_pz() const
Definition: PHG4Particle.h:18