Class Reference for E1039 Core & Analysis Software
PHG4PrimaryGeneratorAction.cc
Go to the documentation of this file.
2 #include "PHG4InEvent.h"
3 #include "PHG4VtxPoint.h"
4 #include "PHG4Particle.h"
6 
7 #include <phool/phool.h>
8 
9 #include <Geant4/G4Event.hh>
10 #include <Geant4/G4ParticleTable.hh>
11 #include <Geant4/G4PrimaryParticle.hh>
12 #include <Geant4/G4PrimaryVertex.hh>
13 #include <Geant4/G4SystemOfUnits.hh>
14 #include <Geant4/G4ThreeVector.hh>
15 
16 #include <cstdlib>
17 #include <iostream>
18 #include <map>
19 
20 using namespace std;
21 
22 void
24 {
25  if (!inEvent)
26  {
27  return;
28  }
29  map<int, PHG4VtxPoint *>::const_iterator vtxiter;
30  multimap<int, PHG4Particle *>::const_iterator particle_iter;
31  std::pair< std::map<int, PHG4VtxPoint *>::const_iterator, std::map<int, PHG4VtxPoint *>::const_iterator > vtxbegin_end = inEvent->GetVertices();
32 
33  for (vtxiter = vtxbegin_end.first; vtxiter != vtxbegin_end.second; ++vtxiter)
34  {
35  // cout << "vtx number: " << vtxiter->first << endl;
36  // (*vtxiter->second).identify();
37  // expected units are cm !
38  G4ThreeVector position((*vtxiter->second).get_x()*cm, (*vtxiter->second).get_y()*cm, (*vtxiter->second).get_z()*cm );
39  G4PrimaryVertex* vertex = new G4PrimaryVertex(position, (*vtxiter->second).get_t()*nanosecond);
40  pair<multimap<int, PHG4Particle *>::const_iterator, multimap<int, PHG4Particle *>::const_iterator > particlebegin_end = inEvent->GetParticles(vtxiter->first);
41  for (particle_iter = particlebegin_end.first; particle_iter != particlebegin_end.second; ++particle_iter)
42  {
43  // cout << "PHG4PrimaryGeneratorAction: dealing with" << endl;
44  // (particle_iter->second)->identify();
45 
46  // this is really ugly, and maybe it can be streamlined. Initially it was clear cut, if we only give a particle by its name,
47  // we find it here in the G4 particle table, find the
48  // PDG id and then hand it off with the momentum to G4PrimaryParticle
49  // We also have the capability to give a particle a PDG id and then we don't need this translation (the pdg/particle name lookup is
50  // done somewhere else, maybe this should be rethought)
51  // The problem is that geantinos have the pdg pid = 0 but handing this off to the G4PrimaryParticle ctor will just drop it. So
52  // after going through this pdg id lookup once, we have to go through it again in case it is still zero and treat the
53  // geantinos specially. Probably this can be combined with some thought, but rigth now I don't have time for this
54  if (!(*particle_iter->second).get_pid())
55  {
56  G4String particleName = (*particle_iter->second).get_name();
57  G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
58  G4ParticleDefinition* particledef
59  = particleTable->FindParticle(particleName);
60  if (particledef)
61  {
62  (*particle_iter->second).set_pid(particledef->GetPDGEncoding());
63  }
64  else
65  {
66  cout << PHWHERE << "Cannot get PDG value for particle " << particleName
67  << ", dropping it" << endl;
68  continue;
69  }
70  }
71  G4PrimaryParticle* g4part = NULL;
72  if (!(*particle_iter->second).get_pid()) // deal with geantinos which have pid=0
73  {
74  G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
75  G4ParticleDefinition* particle_definition
76  = particleTable->FindParticle((*particle_iter->second).get_name());
77  if (particle_definition)
78  {
79  G4double mass = particle_definition->GetPDGMass();
80  g4part = new G4PrimaryParticle(particle_definition);
81  double ekin = sqrt((*particle_iter->second).get_px() * (*particle_iter->second).get_px() +
82  (*particle_iter->second).get_py() * (*particle_iter->second).get_py() +
83  (*particle_iter->second).get_pz() * (*particle_iter->second).get_pz());
84 
85  // expected momentum unit is GeV
86  g4part->SetKineticEnergy( ekin*GeV );
87  g4part->SetMass( mass );
88  G4ThreeVector v((*particle_iter->second).get_px(), (*particle_iter->second).get_py(), (*particle_iter->second).get_pz());
89  G4ThreeVector vunit = v.unit();
90  g4part->SetMomentumDirection( vunit );
91  g4part->SetCharge( particle_definition->GetPDGCharge() );
92  G4ThreeVector particle_polarization;
93  g4part->SetPolarization(particle_polarization.x(),
94  particle_polarization.y(),
95  particle_polarization.z());
96  }
97  else
98  {
99  cout << PHWHERE << " cannot get G4 particle definition" << endl;
100  cout << "you should have never gotten here, please check this in detail" << endl;
101  cout << "exiting now" << endl;
102  exit(1);
103  }
104  }
105  else
106  {
107  // expected momentum unit is GeV
108  g4part = new G4PrimaryParticle((*particle_iter->second).get_pid(),
109  (*particle_iter->second).get_px()*GeV,
110  (*particle_iter->second).get_py()*GeV,
111  (*particle_iter->second).get_pz()*GeV);
112  }
113  //if (inEvent->isEmbeded(particle_iter->second))
114  // Do this for all primaries, not just the embedded particle, so that
115  // we can carry the barcode information forward.
116  // {
117  PHG4UserPrimaryParticleInformation *userdata = new PHG4UserPrimaryParticleInformation(inEvent->isEmbeded(particle_iter->second));
118  userdata->set_user_barcode((*particle_iter->second).get_barcode());
119  g4part->SetUserInformation(userdata);
120  // }
121  vertex->SetPrimary(g4part);
122  }
123  // vertex->Print();
124  anEvent->AddPrimaryVertex(vertex);
125  }
126  return;
127 }
#define NULL
Definition: Pdb.h:9
virtual void GeneratePrimaries(G4Event *anEvent)
#define PHWHERE
Definition: phool.h:23