Class Reference for E1039 Core & Analysis Software
PHG4PhenixEventAction.h
Go to the documentation of this file.
1 #ifndef PHG4VUserEventAction_h
2 #define PHG4VUserEventAction_h
3 
4 #include <phool/PHTimeServer.h>
5 
6 #include <Geant4/G4UserEventAction.hh>
7 
8 #include <list>
9 
10 
11 class G4Event;
12 class PHG4EventAction;
13 class PHCompositeNode;
14 
15 class PHG4PhenixEventAction : public G4UserEventAction
16 {
17 
18  public:
19  PHG4PhenixEventAction( void );
20 
21  virtual ~PHG4PhenixEventAction();
22 
24  void AddAction( PHG4EventAction* action )
25  { actions_.push_back( action ); }
26 
27  void BeginOfEventAction(const G4Event*);
28 
29  void EndOfEventAction(const G4Event*);
30 
31  private:
32 
34  typedef std::list<PHG4EventAction*> ActionList;
35  ActionList actions_;
36 
38  PHTimeServer::timer _timer;
39 };
40 
41 
42 #endif
PHTimer server for accessing external information.
void EndOfEventAction(const G4Event *)
void AddAction(PHG4EventAction *action)
register an action. This is called in PHG4Reco::Init based on which actions are found on the tree
void BeginOfEventAction(const G4Event *)
wrapper around PHTimer, for storage in a map
Definition: PHTimeServer.h:35