CMS 3D CMS Logo

KillSecondariesStackingAction.cc
Go to the documentation of this file.
4 
5 #include "G4Track.hh"
6 
7 G4ClassificationOfNewTrack KillSecondariesStackingAction::ClassifyNewTrack(const G4Track *aTrack) {
8  auto track = const_cast<G4Track *>(aTrack);
9  if (aTrack->GetCreatorProcess() == nullptr || aTrack->GetParentID() == 0) {
11  return fUrgent;
12  } else {
13  const G4Track *mother = CurrentG4Track::track();
14  MCTruthUtil::secondary(track, *mother, 0);
15  return fKill;
16  }
17 }
G4ClassificationOfNewTrack ClassifyNewTrack(const G4Track *) override
static void secondary(G4Track *aSecondary, const G4Track &mother, int)
Definition: MCTruthUtil.cc:17
static void primary(G4Track *aPrimary)
Definition: MCTruthUtil.cc:7
static const G4Track * track()