Class Reference for E1039 Core & Analysis Software
PHG4Particlev1.h
Go to the documentation of this file.
1 #ifndef PHG4PARTICLEV1_H__
2 #define PHG4PARTICLEV1_H__
3 
4 #include "PHG4Particle.h"
5 
7 {
8  public:
10  PHG4Particlev1(const std::string &name, const int pid, const double px, const double py, const double pz);
11  PHG4Particlev1(const PHG4Particle *in);
12 
13  virtual ~PHG4Particlev1() {}
14 
15  int get_pid() const {return fpid;}
16  std::string get_name() const {return fname;}
17  double get_px() const {return fpx;}
18  double get_py() const {return fpy;}
19  double get_pz() const {return fpz;}
20 
21  int get_barcode() const {return barcode;}
22 
23  void set_name(const std::string &name) {fname=name;}
24  void set_pid(const int i) {fpid=i;}
25  void set_px(const double x) {fpx = x;}
26  void set_py(const double x) {fpy = x;}
27  void set_pz(const double x) {fpz = x;}
28 
29  void set_barcode(const int bcd) {barcode = bcd;}
30 
31  void identify(std::ostream& os = std::cout) const;
32 
33  protected:
34  std::string fname;
35  int fpid;
36  double fpx,fpy,fpz;
37  int barcode;
38 
39  ClassDef(PHG4Particlev1,1)
40 };
41 
42 #endif
double get_py() const
std::string fname
int get_barcode() const
double get_pz() const
void set_pid(const int i)
void set_pz(const double x)
std::string get_name() const
int get_pid() const
void set_px(const double x)
void set_name(const std::string &name)
void set_py(const double x)
void set_barcode(const int bcd)
void identify(std::ostream &os=std::cout) const
double get_px() const
PHG4Particlev1(const std::string &name, const int pid, const double px, const double py, const double pz)
virtual ~PHG4Particlev1()