22 auto track{step->GetTrack()};
24 const auto trackID{track->GetTrackID()};
25 const auto parent{track->GetParentID()};
28 trackParents_[trackID] = parent;
31 auto process{track->GetCreatorProcess()};
32 std::string processName{process ? process->GetProcessName() :
"Primary"};
34 if (processName.find(
"biasWrapper") != std::string::npos) {
35 std::size_t pos = processName.find_first_of(
"(") + 1;
36 processName = processName.substr(pos, processName.size() - pos - 1);
43 trackMap.isDescendant(
54 const auto particleName{track->GetParticleDefinition()->GetParticleName()};
57 const auto energy{step->GetPostStepPoint()->GetTotalEnergy()};
60 auto volume{track->GetVolume()};
61 auto volumeName{volume ? volume->GetName() :
"undefined"};
65 auto nextVolumePtr{track->GetNextVolume()};
66 auto nextVolume{nextVolumePtr ? nextVolumePtr->GetName() :
"undefined"};
69 G4String regionName{
"undefined"};
71 auto lv{volume->GetLogicalVolume()};
73 auto region{lv->GetRegion()};
75 regionName = region->GetName();
80 std::cout <<
" Step " << track->GetCurrentStepNumber() <<
" ("
81 << track->GetParticleDefinition()->GetParticleName() <<
") {"
82 <<
" Energy: " << energy <<
" Track ID: " << track->GetTrackID()
83 <<
" Particle currently in: " << volumeName
84 <<
" Region: " << regionName <<
" Next volume: " << nextVolume
85 <<
" Weight: " << track->GetWeight() <<
" Parent: " << parent
86 <<
" (" << processName <<
") "
88 for (
auto const& child : *(step->GetSecondaryInCurrentStep())) {
89 std::cout <<
" (" << child->GetTotalEnergy()
90 <<
"): " << child->GetParticleDefinition()->GetPDGEncoding();
93 std::cout <<
" }" << std::endl;