Class Reference for E1039 Core & Analysis Software
PHG4ParticleGun.cc
Go to the documentation of this file.
1 #include "PHG4ParticleGun.h"
2 #include "PHG4Particlev1.h"
3 
4 #include "PHG4InEvent.h"
5 
6 #include <phool/getClass.h>
7 
9 #include <phool/PHIODataNode.h>
10 #include <phool/PHRandomSeed.h>
11 
12 #include <Geant4/G4ParticleTable.hh>
13 #include <Geant4/G4ParticleDefinition.hh>
14 
15 #include <TRandom.h>
16 #include <cassert>
17 #include <cstdlib>
18 #include <iostream>
20 
21 using namespace std;
22 
23 PHG4ParticleGun::PHG4ParticleGun(const string &name):
25  _beam_profile(nullptr),
26  _legacy_vertexgenerator(false)
27 {
29 
30  return;
31 }
32 
34 {
35  delete _beam_profile;
36  delete _vertexGen;
37  return;
38 }
39 
42  gRandom->SetSeed(PHRandomSeed());
43  _vertexGen->InitRun(topNode);//abi
44  return 0;
45 }
46 
47 int
49 {
50  double vx = vtx_x, vy = vtx_y;
51  if(_beam_profile) {
52  _beam_profile->GetRandom2(vx, vy);
53  }
54 
55  PHG4InEvent *ineve = findNode::getClass<PHG4InEvent>(topNode,"PHG4INEVENT");
56  ReuseExistingVertex(topNode); // checks if we should reuse existing vertex
57 
60  TVector3 vtx = _vertexGen->generateVertex();
61  vx = vtx.X();
62  vy = vtx.Y();
63  vtx_z = vtx.Z();
64  }
65 
66  int vtxindex = ineve->AddVtx(vx,vy,vtx_z,t0);
67  vector<PHG4Particle *>::const_iterator iter;
68  for (iter = particlelist.begin(); iter != particlelist.end(); ++iter)
69  {
70  PHG4Particle *particle = new PHG4Particlev1(*iter);
71  SetParticleId(particle,ineve);
72  ineve->AddParticle(vtxindex, particle);
73  }
74  if (verbosity > 0)
75  {
76  ineve->identify();
77  }
78  return 0;
79 }
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
virtual int InitRun(PHCompositeNode *topNode)
void SetParticleId(PHG4Particle *particle, PHG4InEvent *ineve)
virtual ~PHG4ParticleGun()
PHG4ParticleGun(const std::string &name="PGUN")
int process_event(PHCompositeNode *topNode)
bool _legacy_vertexgenerator
SQPrimaryVertexGen * _vertexGen
virtual int InitRun(PHCompositeNode *topNode)
Class to generate the event vertex, based on the beam profile and the target+spectrometer materials g...
TVector3 generateVertex()
generate 3-D vertex position
int InitRun(PHCompositeNode *node)
Initialize at the begining of Run.