Class Reference for E1039 Core & Analysis Software
PHG4PhenixSteppingAction.h
Go to the documentation of this file.
1 #ifndef PHG4VUserSteppingAction_h
2 #define PHG4VUserSteppingAction_h
3 
4 #include <Geant4/G4UserSteppingAction.hh>
5 #include <list>
6 
7 class G4Step;
9 class PHCompositeNode;
10 
11 class PHG4PhenixSteppingAction : public G4UserSteppingAction
12 {
13 
14  public:
16 
17  virtual ~PHG4PhenixSteppingAction();
18 
19 
21  void AddAction( PHG4SteppingAction* action )
22  {
23  if (action)
24  {
25  actions_.push_back( action );
26  }
27  }
28 
29  void set_energy_threshold(double t) { energy_threshold_ = t; }
30 
31  virtual void UserSteppingAction(const G4Step*);
32 
33  private:
34 
36  typedef std::list<PHG4SteppingAction*> ActionList;
37  ActionList actions_;
38 
40  double energy_threshold_;
41 
42 };
43 
44 
45 #endif
virtual void UserSteppingAction(const G4Step *)
void AddAction(PHG4SteppingAction *action)
register an action. This is called in PHG4Reco::Init based on which actions are found on the tree