Class Reference for E1039 Core & Analysis Software
PHG4TruthTrackingAction.cc
Go to the documentation of this file.
2 
3 #include "PHG4TruthEventAction.h"
4 #include "PHG4TrackUserInfoV1.h"
6 
7 #include "PHG4Particlev2.h"
8 #include "PHG4VtxPointv1.h"
10 #include "PHG4Showerv1.h"
11 
12 #include <phool/getClass.h>
13 
14 #include <Geant4/G4Step.hh>
15 #include <Geant4/G4SystemOfUnits.hh>
16 #include <Geant4/G4Track.hh>
17 #include <Geant4/G4TrackingManager.hh>
18 #include <Geant4/G4TrackVector.hh>
19 #include <Geant4/G4PrimaryParticle.hh>
20 #include <Geant4/G4VUserPrimaryParticleInformation.hh>
21 
22 using namespace std;
23 
24 const int VERBOSE = 0;
25 
26 //________________________________________________________
28  eventAction_( eventAction ),
29  truthInfoList_( NULL )
30 {}
31 
33 
34  int trackid = 0;
35  if (track->GetParentID()) {
36  // secondaries get negative user ids and increment downward between geant subevents
37  trackid = truthInfoList_->mintrkindex() - 1;
38  } else {
39  // primaries get positive user ids and increment upward between geant subevents
40  trackid = truthInfoList_->maxtrkindex() + 1;
41  }
42 
43  // add the user id to the geant4 user info
44  PHG4TrackUserInfo::SetUserTrackId(const_cast<G4Track *> (track), trackid);
45 
46  // determine the momentum vector
47  G4ParticleDefinition* def = track->GetDefinition();
48  int pdgid = def->GetPDGEncoding();
49  double m = def->GetPDGMass();
50  double ke = track->GetVertexKineticEnergy();
51  double ptot = sqrt(ke * ke + 2.0 * m * ke);
52 
53  G4ThreeVector pdir = track->GetVertexMomentumDirection();
54  pdir *= ptot;
55 
56  // create a new particle -----------------------------------------------------
58  ti->set_px(pdir[0] / GeV);
59  ti->set_py(pdir[1] / GeV);
60  ti->set_pz(pdir[2] / GeV);
61  ti->set_track_id( trackid );
62 
63  ti->set_parent_id(track->GetParentID());
64  if ( PHG4TrackUserInfoV1* p = dynamic_cast<PHG4TrackUserInfoV1*>(track->GetUserInformation()) ) {
65  ti->set_parent_id( p->GetUserParentId() );
66  }
67 
68  ti->set_primary_id(trackid);
69  if ( PHG4TrackUserInfoV1* p = dynamic_cast<PHG4TrackUserInfoV1*>(track->GetUserInformation()) ) {
70  if (track->GetParentID()) {
71  ti->set_primary_id( p->GetUserPrimaryId() );
72  } else {
73  PHG4TrackUserInfo::SetUserPrimaryId(const_cast<G4Track *> (track), trackid);
74  ti->set_primary_id(trackid);
75  }
76  }
77 
78  ti->set_pid( pdgid );
79  ti->set_name(def->GetParticleName());
80  ti->set_e(track->GetTotalEnergy() / GeV);
81 
82  if (!track->GetParentID()) {
83  // primary track - propagate the barcode information
84  PHG4UserPrimaryParticleInformation* userdata = static_cast<PHG4UserPrimaryParticleInformation*> (track->GetDynamicParticle()->GetPrimaryParticle()->GetUserInformation());
85  if(userdata) ti->set_barcode( userdata->get_user_barcode() );
86  }
87 
88 
89  // create a new vertex object ------------------------------------------------
90  G4ThreeVector v = track->GetVertexPosition();
91  map<G4ThreeVector, int>::const_iterator viter = VertexMap.find(v);
92  int vtxindex = 0;
93  if (viter != VertexMap.end()) {
94  vtxindex = viter->second;
95  } else {
96 
97  vtxindex = truthInfoList_->maxvtxindex() + 1;
98  if (track->GetParentID()) {
99  vtxindex = truthInfoList_->minvtxindex() - 1;
100  }
101 
102  VertexMap[v] = vtxindex;
103  PHG4VtxPointv1 *vtxpt = new PHG4VtxPointv1(v[0] / cm,
104  v[1] / cm,
105  v[2] / cm,
106  track->GetGlobalTime() / ns);
107  // insert new vertex into the output
108  truthInfoList_->AddVertex(vtxindex, vtxpt);
109  }
110 
111  ti->set_vtx_id(vtxindex);
112 
113  // insert particle into the output
114  truthInfoList_->AddParticle(trackid, ti);
115 
116 
117  // create or add to a new shower object --------------------------------------
118  if (!track->GetParentID()) {
119  PHG4Showerv1* shower = new PHG4Showerv1();
120  PHG4TrackUserInfo::SetShower(const_cast<G4Track *> (track), shower);
121  truthInfoList_->AddShower(trackid, shower);
122  shower->set_id(trackid); // fyi, secondary showers may not share these ids
123  shower->set_parent_particle_id(trackid);
124  shower->set_parent_shower_id(0);
125  } else {
126  // get shower
127  if ( G4VUserTrackInformation* p = track->GetUserInformation() ) {
128  if ( PHG4TrackUserInfoV1* pp = dynamic_cast<PHG4TrackUserInfoV1*>(p) ) {
129  if (pp->GetShower()) {
130  pp->GetShower()->add_g4particle_id(trackid);
131  pp->GetShower()->add_g4vertex_id(vtxindex);
132  }
133  }
134  }
135  }
136 
137  // tell the primary particle copy in G4 where this output will be stored
138  if (!track->GetParentID()) {
139  PHG4UserPrimaryParticleInformation* userdata = static_cast<PHG4UserPrimaryParticleInformation*>(track->GetDynamicParticle()->GetPrimaryParticle()->GetUserInformation());
140  if (userdata) {
141  userdata->set_user_track_id(trackid);
142  userdata->set_user_vtx_id(vtxindex);
143  }
144  }
145 
146  return;
147 }
148 
150 
151  if (fpTrackingManager) {
152 
153  int trackid = track->GetTrackID();
154  int primaryid = 0;
155  PHG4Shower* shower = NULL;
156  if ( PHG4TrackUserInfoV1* p = dynamic_cast<PHG4TrackUserInfoV1*>(track->GetUserInformation()) ) {
157  trackid = p->GetUserTrackId();
158  primaryid = p->GetUserPrimaryId();
159  shower = p->GetShower();
160  }
161 
162  G4TrackVector* secondaries = fpTrackingManager->GimmeSecondaries();
163  if (secondaries) {
164  for (size_t i = 0; i < secondaries->size(); ++i) {
165  G4Track* secondary = (*secondaries)[i];
166  PHG4TrackUserInfo::SetUserParentId(const_cast<G4Track *> (secondary), trackid);
167  PHG4TrackUserInfo::SetUserPrimaryId(const_cast<G4Track *> (secondary), primaryid);
168  PHG4TrackUserInfo::SetShower(const_cast<G4Track *> (secondary), shower);
169  }
170  }
171  }
172 
173  if ( PHG4TrackUserInfoV1* p = dynamic_cast<PHG4TrackUserInfoV1*>(track->GetUserInformation()) ) {
174  if ( p->GetKeep() ) {
175  int trackid = p->GetUserTrackId();
176  eventAction_->AddTrackidToWritelist( trackid );
177  }
178  }
179 }
180 
181 void
183 {
184  //now look for the map and grab a pointer to it.
185  truthInfoList_ = findNode::getClass<PHG4TruthInfoContainer>( topNode , "G4TruthInfo" );
186 
187  // if we do not find the node we need to make it.
188  if ( !truthInfoList_ )
189  { std::cout << "PHG4TruthEventAction::SetInterfacePointers - unable to find G4TruthInfo" << std::endl; }
190 
191 }
192 
193 int
195 {
196  VertexMap.clear();
197  return 0;
198 }
const int VERBOSE
#define NULL
Definition: Pdb.h:9
void set_pid(const int i)
void set_pz(const double x)
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 set_primary_id(const int i)
void set_parent_id(const int i)
void set_e(const double e)
void set_track_id(const int i)
void set_vtx_id(const int i)
void set_id(int id)
Definition: PHG4Showerv1.h:30
void set_parent_shower_id(int parent_shower_id)
Definition: PHG4Showerv1.h:36
void set_parent_particle_id(int parent_particle_id)
Definition: PHG4Showerv1.h:33
void AddTrackidToWritelist(const G4int trackid)
add id into track list
ConstIterator AddParticle(const int particleid, PHG4Particle *newparticle)
Add a particle that the user has created.
ConstShowerIterator AddShower(const int showerid, PHG4Shower *newshower)
Add a shower that the user has created.
ConstVtxIterator AddVertex(const int vtxid, PHG4VtxPoint *vertex)
Add a vertex and return an iterator to the user.
virtual void PreUserTrackingAction(const G4Track *)
tracking action
int ResetEvent(PHCompositeNode *)
PHG4TruthTrackingAction(PHG4TruthEventAction *)
constructor
virtual void PostUserTrackingAction(const G4Track *)
virtual void SetInterfacePointers(PHCompositeNode *)
Set pointers to the i/o nodes.
void SetUserPrimaryId(G4Track *track, const int userprimaryid)
void SetShower(G4Track *track, PHG4Shower *shower)
void SetUserTrackId(G4Track *track, const int usertrackid)
void SetUserParentId(G4Track *track, const int userparentid)