4 #include <Geant4/G4Track.hh>
5 #include <Geant4/G4SystemOfUnits.hh>
12 while (actions_.begin() != actions_.end())
14 delete actions_.back();
24 if(energy_threshold_ > 0.)
26 G4Track* theTrack = aStep->GetTrack();
27 if(theTrack->GetMomentumDirection()[2] < 0.)
29 theTrack->SetTrackStatus(fStopAndKill);
33 if(theTrack->GetTotalEnergy() < energy_threshold_*GeV)
35 theTrack->SetTrackStatus(fStopAndKill);
41 bool hit_was_used =
false;
42 for( ActionList::const_iterator iter = actions_.begin(); iter != actions_.end(); ++iter )
46 hit_was_used |= (*iter)->UserSteppingAction( aStep, hit_was_used );
virtual ~PHG4PhenixSteppingAction()
virtual void UserSteppingAction(const G4Step *)
PHG4PhenixSteppingAction(void)