Geant4 11.2.2
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:
52
53 public:
56
58 ~G4WorkerRunManager() override;
59
60 void InitializeGeometry() override;
61 void RunInitialization() override;
62 void DoEventLoop(G4int n_event, const char* macroFile = nullptr, G4int n_select = -1) override;
63 void ProcessOneEvent(G4int i_event) override;
64 G4Event* GenerateEvent(G4int i_event) override;
65
66 void RunTermination() override;
67 void TerminateEventLoop() override;
68
69 // This function is called by the thread function: it should
70 // loop until some work is requested.
71 virtual void DoWork();
72
73 // Sets the worker context.
74 inline void SetWorkerThread(G4WorkerThread* wc) { workerContext = wc; }
75
76 void SetUserInitialization(G4VUserPhysicsList* userInit) override;
81 void SetUserAction(G4UserRunAction* userAction) override;
82 void SetUserAction(G4VUserPrimaryGeneratorAction* userAction) override;
83 void SetUserAction(G4UserEventAction* userAction) override;
84 void SetUserAction(G4UserStackingAction* userAction) override;
85 void SetUserAction(G4UserTrackingAction* userAction) override;
86 void SetUserAction(G4UserSteppingAction* userAction) override;
87
88 void RestoreRndmEachEvent(G4bool flag) override { readStatusFromFile = flag; }
89
90 protected:
91 void ConstructScoringWorlds() override;
92 void StoreRNGStatus(const G4String& filenamePrefix) override;
93 void rndmSaveThisRun() override;
94 void rndmSaveThisEvent() override;
95
96 // This method will merge (reduce) the results
97 // of this run into the global run
98 virtual void MergePartialResults();
99
100 protected:
102#ifdef G4MULTITHREADED
103 G4bool visIsSetUp = false;
104#endif
105
113
114 private:
115 void SetupDefaultRNGEngine();
116
117 private:
118 std::unique_ptr<ProfilerConfig> workerRunProfiler;
119};
120
121#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
void RunTermination() override
void SetUserAction(G4UserRunAction *userAction) override
G4Event * GenerateEvent(G4int i_event) override
virtual void MergePartialResults()
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