Geant4-11
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
53 public:
54 typedef std::vector<G4String> G4StrVector;
55
56 public:
60
61 // Modified for worker behavior
62 virtual void RunInitialization() override;
63 virtual void DoEventLoop(G4int n_event, const char* macroFile = nullptr,
64 G4int n_select = -1) override;
65 virtual void ProcessOneEvent(G4int i_event) override;
66 virtual G4Event* GenerateEvent(G4int i_event) override;
67 virtual void RunTermination() override;
68 virtual void TerminateEventLoop() override;
69 virtual void DoWork() override;
70 virtual void RestoreRndmEachEvent(G4bool flag) override
71 {
72 readStatusFromFile = flag;
73 }
74
75 virtual void DoCleanup();
76 virtual void ProcessUI();
79
80 protected:
81 virtual void StoreRNGStatus(const G4String& filenamePrefix) override;
82
83 private:
85
86 private:
88
89 private:
90 std::unique_ptr<ProfilerConfig> workerRunProfiler;
91};
92
93#endif // G4WorkerTaskRunManager_h
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
G4WorkerThread * workerContext
virtual void DoEventLoop(G4int n_event, const char *macroFile=nullptr, G4int n_select=-1) override
virtual G4Event * GenerateEvent(G4int i_event) override
virtual void StoreRNGStatus(const G4String &filenamePrefix) override
virtual void RunTermination() override
virtual void RestoreRndmEachEvent(G4bool flag) override
virtual void TerminateEventLoop() override
G4WorkerThread * GetWorkerThread() const
virtual void DoWork() override
std::vector< G4String > G4StrVector
virtual void ProcessOneEvent(G4int i_event) override
static G4WorkerTaskRunManagerKernel * GetWorkerRunManagerKernel()
virtual void RunInitialization() override
static G4WorkerTaskRunManager * GetWorkerRunManager()
std::unique_ptr< ProfilerConfig > workerRunProfiler
G4StrVector GetCommandStack() const