Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4WorkerRunManager.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// G4WorkerRunManager
27//
28// Class description:
29//
30// This is a class for run control in GEANT4 for multi-threading.
31// It extends G4RunManager re-implementing multi-threaded behavior in
32// key methods. See documentation for G4RunManager.
33// User should never initialize instances of this class, that are usually
34// handled by G4MTRunManager. There exists one instance of this class for
35// each worker in a MT application.
36
37// Original authors: X.Dong, A.Dotti - 2013
38// --------------------------------------------------------------------
39#ifndef G4WorkerRunManager_hh
40#define G4WorkerRunManager_hh 1
41
42#include "G4RNGHelper.hh"
43#include "G4RunManager.hh"
44
45class G4WorkerThread;
47
49{
50 public:
53
55 ~G4WorkerRunManager() override;
56
57 void InitializeGeometry() override;
58 void RunInitialization() override;
59 void DoEventLoop(G4int n_event, const char* macroFile = nullptr, G4int n_select = -1) override;
60 void ProcessOneEvent(G4int i_event) override;
61 G4Event* GenerateEvent(G4int i_event) override;
62
63 void RunTermination() override;
64 void TerminateEventLoop() override;
65
66 // This function is called by the thread function: it should
67 // loop until some work is requested.
68 virtual void DoWork();
69
70 // Sets the worker context.
71 inline void SetWorkerThread(G4WorkerThread* wc) { workerContext = wc; }
72
73 void SetUserInitialization(G4VUserPhysicsList* userInit) override;
78 void SetUserAction(G4UserRunAction* userAction) override;
79 void SetUserAction(G4VUserPrimaryGeneratorAction* userAction) override;
80 void SetUserAction(G4UserEventAction* userAction) override;
81 void SetUserAction(G4UserStackingAction* userAction) override;
82 void SetUserAction(G4UserTrackingAction* userAction) override;
83 void SetUserAction(G4UserSteppingAction* userAction) override;
84
85 void RestoreRndmEachEvent(G4bool flag) override { readStatusFromFile = flag; }
86
87 protected:
88 void ConstructScoringWorlds() override;
89 void StoreRNGStatus(const G4String& filenamePrefix) override;
90 void rndmSaveThisRun() override;
91 void rndmSaveThisEvent() override;
92
93 // This method will merge (reduce) the results
94 // of this run into the global run
95 virtual void MergePartialResults(G4bool mergeEvents = true);
96
97 protected:
99#ifdef G4MULTITHREADED
100 G4bool visIsSetUp = false;
101#endif
102
110
111 protected:
112 virtual void SetupDefaultRNGEngine();
113};
114
115#endif // G4WorkerRunManager_hh
std::queue< G4long > G4SeedsQueue
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
void SetWorkerThread(G4WorkerThread *wc)
static G4WorkerRunManagerKernel * GetWorkerRunManagerKernel()
void InitializeGeometry() override
void rndmSaveThisRun() override
virtual void SetupDefaultRNGEngine()
void RunTermination() override
void SetUserAction(G4UserRunAction *userAction) override
G4Event * GenerateEvent(G4int i_event) override
virtual void MergePartialResults(G4bool mergeEvents=true)
G4WorkerThread * workerContext
void rndmSaveThisEvent() override
void TerminateEventLoop() override
void RestoreRndmEachEvent(G4bool flag) override
void RunInitialization() override
void SetUserInitialization(G4VUserPhysicsList *userInit) override
void ProcessOneEvent(G4int i_event) override
static G4WorkerRunManager * GetWorkerRunManager()
void ConstructScoringWorlds() override
void DoEventLoop(G4int n_event, const char *macroFile=nullptr, G4int n_select=-1) override
void StoreRNGStatus(const G4String &filenamePrefix) override