Class Reference for E1039 Core & Analysis Software
PHG4ParticleGeneratorBase.h
Go to the documentation of this file.
1 #ifndef PHG4ParticleGeneratorBase_H__
2 #define PHG4ParticleGeneratorBase_H__
3 
4 #include <fun4all/SubsysReco.h>
5 
6 // rootcint barfs with this header so we need to hide it
7 #ifndef __CINT__
8 #include <gsl/gsl_rng.h>
9 #endif
10 
11 #include <vector>
12 
13 class PHG4InEvent;
14 class PHG4Particle;
15 
17 {
18  public:
20 
21  virtual int InitRun(PHCompositeNode *topNode);
22  virtual int process_event(PHCompositeNode *topNode);
23 
24  virtual void set_name(const std::string &particle = "proton");
25  virtual void set_pid(const int pid);
26  virtual void set_mom(const double x, const double y, const double z);
27  virtual void set_vtx(const double x, const double y, const double z);
28  virtual void set_t0(const double t) {t0 = t;}
29 
30  virtual double get_vtx_x() const {return vtx_x;}
31  virtual double get_vtx_y() const {return vtx_y;}
32  virtual double get_vtx_z() const {return vtx_z;}
33  virtual double get_t0() const {return t0;}
34 
35  virtual void Print(const std::string &what = "ALL") const;
36  virtual void AddParticle(const std::string &particle, const double x, const double y, const double z);
37  virtual void AddParticle(const int pid, const double x, const double y, const double z);
38  virtual void Embed(const int i=1) {embedflag = i;}
39  virtual int ReuseExistingVertex(PHCompositeNode *topNode);
40 
42  void set_reuse_existing_vertex(const int i = 1) {reuse_existing_vertex = i;}
43  void set_seed(const unsigned int iseed);
44  unsigned int get_seed() const {return seed;}
45 
46  protected:
47  PHG4ParticleGeneratorBase(const std::string &name="GENERATORBASE");
48  int get_pdgcode(const std::string &name) const;
49  std::string get_pdgname(const int pdgcode) const;
50  double get_mass(const int pdgcode) const;
52  void SetParticleId(PHG4Particle *particle, PHG4InEvent *ineve);
53  int embedflag;
55  double vtx_x;
56  double vtx_y;
57  double vtx_z;
58  double t0;
59  std::vector<PHG4Particle *> particlelist;
60  unsigned int seed;
61 #ifndef __CINT__
62  gsl_rng *RandomGenerator;
63 #endif
64 };
65 
66 #endif
void set_reuse_existing_vertex(const int i=1)
int get_pdgcode(const std::string &name) const
virtual int ReuseExistingVertex(PHCompositeNode *topNode)
std::vector< PHG4Particle * > particlelist
virtual void set_mom(const double x, const double y, const double z)
std::string get_pdgname(const int pdgcode) const
virtual void set_t0(const double t)
virtual void AddParticle(const std::string &particle, const double x, const double y, const double z)
virtual void set_vtx(const double x, const double y, const double z)
PHG4ParticleGeneratorBase(const std::string &name="GENERATORBASE")
void set_seed(const unsigned int iseed)
virtual int InitRun(PHCompositeNode *topNode)
double get_mass(const int pdgcode) const
void SetParticleId(PHG4Particle *particle, PHG4InEvent *ineve)
virtual double get_vtx_x() const
virtual int process_event(PHCompositeNode *topNode)
virtual double get_vtx_y() const
virtual double get_vtx_z() const
virtual void set_name(const std::string &particle="proton")
virtual void set_pid(const int pid)
virtual void Embed(const int i=1)
virtual void Print(const std::string &what="ALL") const