Class Reference for E1039 Core & Analysis Software
PHG4PhenixTrackingAction.h
Go to the documentation of this file.
1 #ifndef PHG4VUserTrackingAction_h
2 #define PHG4VUserTrackingAction_h
3 
4 #include <Geant4/G4UserTrackingAction.hh>
5 #include <list>
6 
7 // Master UserTrackingAction: tracking actions can be registered with this class
8 // and they will be called in the order of registration.
9 
10 class G4Track;
11 class PHG4TrackingAction;
12 
13 class PHG4PhenixTrackingAction : public G4UserTrackingAction
14 {
15 public:
16  PHG4PhenixTrackingAction( void ) : verbosity_(0) {}
17 
18  virtual ~PHG4PhenixTrackingAction();
19 
21  void AddAction( PHG4TrackingAction* action ) { actions_.push_back( action ); }
22 
23  virtual void PreUserTrackingAction(const G4Track*);
24 
25  virtual void PostUserTrackingAction(const G4Track*);
26 
28  void Verbosity(int val) { verbosity_ = val; }
29  int Verbosity() const { return verbosity_; }
30 
31 private:
32 
34  typedef std::list<PHG4TrackingAction*> ActionList;
35  ActionList actions_;
36  int verbosity_;
37 };
38 
39 
40 #endif
void Verbosity(int val)
Get/Set verbosity level.
void AddAction(PHG4TrackingAction *action)
register an action. This is called in PHG4Reco::Init based on which actions are found on the tree
virtual void PreUserTrackingAction(const G4Track *)
virtual void PostUserTrackingAction(const G4Track *)