Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4WorkerTaskRunManager.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// Author: Jonathan Madsen (May 28st 2020)
28//
29// class description:
30//
31// This is a class for run control in GEANT4 for multi-threaded runs
32// It extends G4RunManager re-implementing multi-threaded behavior in
33// key methods. See documentation for G4RunManager. User should never
34// initialize instances of this class, that are usually handled by
35// G4MTRunManager. There exists one instance of this class for each
36// worker in a MT application.
37
38#ifndef G4WorkerTaskRunManager_h
39#define G4WorkerTaskRunManager_h 1
40
41#include "G4RNGHelper.hh"
42#include "G4RunManager.hh"
43#include "G4WorkerRunManager.hh"
44
45class G4WorkerThread;
47
49{
50 public:
52 using G4StrVector = std::vector<G4String>;
53
54 public:
58
59 // Modified for worker behavior
60 void RunInitialization() override;
61 void DoEventLoop(G4int n_event, const char* macroFile = nullptr, G4int n_select = -1) override;
62 void ProcessOneEvent(G4int i_event) override;
63 G4Event* GenerateEvent(G4int i_event) override;
64 void RunTermination() override;
65 void TerminateEventLoop() override;
66 void DoWork() override;
67 void RestoreRndmEachEvent(G4bool flag) override { readStatusFromFile = flag; }
68
69 virtual void DoCleanup();
70 virtual void ProcessUI();
72 G4StrVector GetCommandStack() const { return processedCommandStack; }
73
74 protected:
75 void StoreRNGStatus(const G4String& filenamePrefix) override;
76
77 private:
78 void SetupDefaultRNGEngine();
79
80 private:
81 G4StrVector processedCommandStack;
82 std::unique_ptr<ProfilerConfig> workerRunProfiler;
83};
84
85#endif // G4WorkerTaskRunManager_h
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4WorkerThread * workerContext
void DoEventLoop(G4int n_event, const char *macroFile=nullptr, G4int n_select=-1) override
G4Event * GenerateEvent(G4int i_event) override
void StoreRNGStatus(const G4String &filenamePrefix) override
void RestoreRndmEachEvent(G4bool flag) override
G4WorkerTaskRunManager()=default
G4WorkerThread * GetWorkerThread() const
void ProcessOneEvent(G4int i_event) override
static G4WorkerTaskRunManagerKernel * GetWorkerRunManagerKernel()
std::vector< G4String > G4StrVector
static G4WorkerTaskRunManager * GetWorkerRunManager()
G4StrVector GetCommandStack() const