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>
28 eventAction_( eventAction ),
29 truthInfoList_(
NULL )
35 if (track->GetParentID()) {
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);
53 G4ThreeVector pdir = track->GetVertexMomentumDirection();
70 if (track->GetParentID()) {
79 ti->
set_name(def->GetParticleName());
80 ti->
set_e(track->GetTotalEnergy() / GeV);
82 if (!track->GetParentID()) {
90 G4ThreeVector v = track->GetVertexPosition();
91 map<G4ThreeVector, int>::const_iterator viter = VertexMap.find(v);
93 if (viter != VertexMap.end()) {
94 vtxindex = viter->second;
98 if (track->GetParentID()) {
102 VertexMap[v] = vtxindex;
106 track->GetGlobalTime() / ns);
108 truthInfoList_->
AddVertex(vtxindex, vtxpt);
118 if (!track->GetParentID()) {
121 truthInfoList_->
AddShower(trackid, shower);
127 if ( G4VUserTrackInformation* p = track->GetUserInformation() ) {
129 if (pp->GetShower()) {
130 pp->GetShower()->add_g4particle_id(trackid);
131 pp->GetShower()->add_g4vertex_id(vtxindex);
138 if (!track->GetParentID()) {
151 if (fpTrackingManager) {
153 int trackid = track->GetTrackID();
157 trackid = p->GetUserTrackId();
158 primaryid = p->GetUserPrimaryId();
159 shower = p->GetShower();
162 G4TrackVector* secondaries = fpTrackingManager->GimmeSecondaries();
164 for (
size_t i = 0; i < secondaries->size(); ++i) {
165 G4Track* secondary = (*secondaries)[i];
174 if ( p->GetKeep() ) {
175 int trackid = p->GetUserTrackId();
185 truthInfoList_ = findNode::getClass<PHG4TruthInfoContainer>( topNode ,
"G4TruthInfo" );
188 if ( !truthInfoList_ )
189 { std::cout <<
"PHG4TruthEventAction::SetInterfacePointers - unable to find G4TruthInfo" << std::endl; }
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_parent_shower_id(int parent_shower_id)
void set_parent_particle_id(int parent_particle_id)
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.
int get_user_barcode() const
void set_user_vtx_id(int val)
void set_user_track_id(int val)
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)