Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4EventManager.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: G4EventManager.hh 71031 2013-06-10 09:11:38Z gcosmo $
28 //
29 //
30 
31 
32 #ifndef G4EventManager_h
33 #define G4EventManager_h 1
34 
35 #include "evmandefs.hh"
36 #include "G4StackManager.hh"
37 #include "G4TrajectoryContainer.hh"
38 #include "G4PrimaryTransformer.hh"
39 class G4Event;
40 class G4UserEventAction;
44 class G4EvManMessenger;
45 #include "G4TrackingManager.hh"
46 #include "G4Track.hh"
47 #include "G4VTrajectory.hh"
48 #include "G4TrackStatus.hh"
49 class G4SDManager;
50 class G4StateManager;
51 #include "globals.hh"
53 
54 // class description:
55 //
56 // G4EventManager controls an event. This class must be a singleton
57 // and should be constructed by G4RunManager.
58 //
59 
61 {
62  public: // with description
64  // This method returns the singleton pointer of G4EventManager.
65 
66  private:
67  static G4ThreadLocal G4EventManager* fpEventManager;
68 
69  public:
72 
73  private:
75  G4EventManager& operator=(const G4EventManager& right);
76 
77  public: // with description
78  void ProcessOneEvent(G4Event* anEvent);
79  // This method is the main entry to this class for simulating an event.
80 
81  void ProcessOneEvent(G4TrackVector* trackVector,G4Event* anEvent=0);
82  // This is an alternative entry for large HEP experiments which create G4Track
83  // objects by themselves directly without using G4VPrimaryGenerator or user
84  // primary generator action. Dummy G4Event object will be created if "anEvent" is null
85  // for internal use, but this dummy object will be deleted at the end of this
86  // method and will never be available for the use after the processing.
87  // Note that in this case of null G4Event pointer no output of the simulated event
88  // is returned by this method, but the user must implement some mechanism
89  // of storing output by his/herself, e.g. in his/her UserEventAction and/or
90  // sensitive detectors.
91  // If valid G4Event object is given, this object will not be deleted with
92  // this method and output objects such as hits collections and trajectories
93  // will be associated to this event object. If this event object has valid
94  // primary vertices/particles, they will be added to the given trackvector input.
95 
96  private:
97  void DoProcessing(G4Event* anEvent);
98  void StackTracks(G4TrackVector *trackVector, G4bool IDhasAlreadySet=false);
99 
100  G4Event* currentEvent;
101 
102  G4StackManager *trackContainer;
103  G4TrackingManager *trackManager;
104  G4TrajectoryContainer *trajectoryContainer;
105  G4int trackIDCounter;
106  G4int verboseLevel;
107  G4SDManager* sdManager;
108  G4PrimaryTransformer* transformer;
109  G4bool tracking;
110  G4bool abortRequested;
111 
112  G4EvManMessenger* theMessenger;
113 
114  G4UserEventAction* userEventAction;
115  G4UserStackingAction* userStackingAction;
116  G4UserTrackingAction* userTrackingAction;
117  G4UserSteppingAction* userSteppingAction;
118 
119  G4int storetRandomNumberStatusToG4Event;
120  G4String randomNumberStatusToG4Event;
121 
122  G4StateManager* stateManager;
123 
124  public: // with description
126  { return currentEvent; }
128  { return currentEvent; }
129  // These methods returns the pointers of const G4Event*
130  // and G4Event*, respectively. Null will be returned when
131  // an event is not processing.
132 
133  public: // with description
134  void AbortCurrentEvent();
135  // This method aborts the processing of the current event. All stacked
136  // tracks are deleted. The contents of G4Event object is not completed,
137  // but trajectories, hits, and/or digits which are created before the
138  // moment of abortion can be used.
139 
140  public: // with description
141  void SetUserAction(G4UserEventAction* userAction);
142  void SetUserAction(G4UserStackingAction* userAction);
143  void SetUserAction(G4UserTrackingAction* userAction);
144  void SetUserAction(G4UserSteppingAction* userAction);
146  { return userEventAction; }
148  { return userStackingAction; }
150  { return userTrackingAction; }
152  { return userSteppingAction; }
153  // Set and get methods for user action classes. User action classes
154  // which should belong to the other managers will be sent to the
155  // corresponding managers.
157  { trackContainer->SetNumberOfAdditionalWaitingStacks(iAdd); }
158 
159  void KeepTheCurrentEvent();
160  // If the current event exists, it is kept undeleted until the end of the current run
161 
163  { return trackContainer; }
165  { return trackManager; }
166 
167  public: // with description
169  { return verboseLevel; }
170  inline void SetVerboseLevel( G4int value )
171  {
172  verboseLevel = value;
173  trackContainer->SetVerboseLevel( value );
174  transformer->SetVerboseLevel( value );
175  }
176  // Set and get method of the verbose level
177 
180  // Set and get method of G4VUserEventInformation object associating with
181  // the current event. Both methods are valid only for G4State_EventProc
182  // application state.
183 
185  { return transformer; }
187  { transformer = tf; }
189  { storetRandomNumberStatusToG4Event = vl; }
190 };
191 
192 
193 
194 #endif
195 
G4PrimaryTransformer * GetPrimaryTransformer() const
G4StackManager * GetStackManager() const
#define G4ThreadLocal
Definition: tls.hh:52
int G4int
Definition: G4Types.hh:78
G4UserEventAction * GetUserEventAction()
G4Event * GetNonconstCurrentEvent()
void SetVerboseLevel(G4int value)
G4TrackingManager * GetTrackingManager() const
void SetUserInformation(G4VUserEventInformation *anInfo)
bool G4bool
Definition: G4Types.hh:79
G4UserSteppingAction * GetUserSteppingAction()
void SetVerboseLevel(G4int const value)
void SetVerboseLevel(G4int vl)
std::vector< G4Track * > G4TrackVector
void SetUserAction(G4UserEventAction *userAction)
G4UserTrackingAction * GetUserTrackingAction()
G4int GetVerboseLevel()
static G4EventManager * GetEventManager()
void AbortCurrentEvent()
void SetNumberOfAdditionalWaitingStacks(G4int iAdd)
const XML_Char int const XML_Char * value
void SetPrimaryTransformer(G4PrimaryTransformer *tf)
void ProcessOneEvent(G4Event *anEvent)
void StoreRandomNumberStatusToG4Event(G4int vl)
const G4Event * GetConstCurrentEvent()
void KeepTheCurrentEvent()
G4UserStackingAction * GetUserStackingAction()
void SetNumberOfAdditionalWaitingStacks(G4int iAdd)
G4VUserEventInformation * GetUserInformation()