Class Reference for E1039 Core & Analysis Software
PHG4PhenixSteppingAction.cc
Go to the documentation of this file.
2 #include "PHG4SteppingAction.h"
3 
4 #include <Geant4/G4Track.hh>
5 #include <Geant4/G4SystemOfUnits.hh>
6 
8 {}
9 
11 {
12  while (actions_.begin() != actions_.end())
13  {
14  delete actions_.back();
15  actions_.pop_back();
16  }
17 }
18 
19 
20 //_________________________________________________________________
22 {
23  // kill tracks to save time
24  if(energy_threshold_ > 0.)
25  {
26  G4Track* theTrack = aStep->GetTrack();
27  if(theTrack->GetMomentumDirection()[2] < 0.) //track is going backwards
28  {
29  theTrack->SetTrackStatus(fStopAndKill);
30  return;
31  }
32 
33  if(theTrack->GetTotalEnergy() < energy_threshold_*GeV)
34  {
35  theTrack->SetTrackStatus(fStopAndKill);
36  return;
37  }
38  }
39 
40  // loop over registered actions, and process
41  bool hit_was_used = false;
42  for( ActionList::const_iterator iter = actions_.begin(); iter != actions_.end(); ++iter )
43  {
44  if(*iter)
45  {
46  hit_was_used |= (*iter)->UserSteppingAction( aStep, hit_was_used );
47  }
48  }
49 
50 }
virtual void UserSteppingAction(const G4Step *)