Class Reference for E1039 Core & Analysis Software
PHG4ParticleGenerator.cc
Go to the documentation of this file.
2 #include "PHG4Particlev2.h"
3 
4 #include "PHG4InEvent.h"
5 
6 
7 #include <phool/getClass.h>
8 
10 #include <phool/PHIODataNode.h>
11 
12 #include <gsl/gsl_randist.h>
13 
14 #include <cmath>
15 
16 using namespace std;
17 
20  z_min(-10.0),
21  z_max(10.0),
22  eta_min(-1.0),
23  eta_max(1.0),
24  phi_min(-M_PI),
25  phi_max(M_PI),
26  mom_min(0.0),
27  mom_max(10.0)
28 {
29  return;
30 }
31 
32 void
33 PHG4ParticleGenerator::set_z_range(const double min, const double max)
34 {
35  z_min = min;
36  z_max = max;
37  return;
38 }
39 
40 void
41 PHG4ParticleGenerator::set_eta_range(const double min, const double max)
42 {
43  eta_min = min;
44  eta_max = max;
45  return;
46 }
47 
48 void
49 PHG4ParticleGenerator::set_phi_range(const double min, const double max)
50 {
51  phi_min = min;
52  phi_max = max;
53  return;
54 }
55 
56 void
57 PHG4ParticleGenerator::set_mom_range(const double min, const double max)
58 {
59  mom_min = min;
60  mom_max = max;
61  return;
62 }
63 
64 int
66 {
67  PHG4InEvent *ineve = findNode::getClass<PHG4InEvent>(topNode,"PHG4INEVENT");
68 
69  if (! ReuseExistingVertex(topNode))
70  {
71  vtx_z = (z_max-z_min)*gsl_rng_uniform_pos(RandomGenerator) + z_min;
72  }
73  int vtxindex = ineve->AddVtx(vtx_x,vtx_y,vtx_z,t0);
74 
75  vector<PHG4Particle *>::const_iterator iter;
76  for (iter = particlelist.begin(); iter != particlelist.end(); ++iter)
77  {
78  PHG4Particle *particle = new PHG4Particlev2(*iter);
79  SetParticleId(particle,ineve);
80  double mom = (mom_max - mom_min)*gsl_rng_uniform_pos(RandomGenerator) + mom_min;
81  double eta = (eta_max - eta_min)*gsl_rng_uniform_pos(RandomGenerator) + eta_min;
82  double phi = (phi_max - phi_min)*gsl_rng_uniform_pos(RandomGenerator) + phi_min;
83  double pt = mom/cosh(eta);
84 
85  particle->set_e(mom);
86  particle->set_px(pt*cos(phi));
87  particle->set_py(pt*sin(phi));
88  particle->set_pz(pt*sinh(eta));
89 
90  ineve->AddParticle(vtxindex, particle);
91  }
92  if (verbosity > 0)
93  {
94  ineve->identify();
95  }
96  return 0;
97 }
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
int AddParticle(const int vtxid, PHG4Particle *particle)
Definition: PHG4InEvent.cc:63
int AddVtx(const double x, const double y, const double z, const double t)
Definition: PHG4InEvent.cc:38
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4InEvent.cc:134
virtual int ReuseExistingVertex(PHCompositeNode *topNode)
std::vector< PHG4Particle * > particlelist
void SetParticleId(PHG4Particle *particle, PHG4InEvent *ineve)
int process_event(PHCompositeNode *topNode)
void set_mom_range(const double mom_min, const double mom_max)
void set_eta_range(const double eta_min, const double eta_max)
void set_phi_range(const double phi_min, const double phi_max)
void set_z_range(const double z_min, const double z_max)
PHG4ParticleGenerator(const std::string &name="PGENERATOR")
virtual void set_e(const double e)
Definition: PHG4Particle.h:37
virtual void set_py(const double x)
Definition: PHG4Particle.h:35
virtual void set_px(const double x)
Definition: PHG4Particle.h:34
virtual void set_pz(const double x)
Definition: PHG4Particle.h:36