Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TaskRunManagerKernel Class Reference

#include <G4TaskRunManagerKernel.hh>

+ Inheritance diagram for G4TaskRunManagerKernel:

Public Member Functions

 G4TaskRunManagerKernel ()
 
 ~G4TaskRunManagerKernel () override=default
 
void SetUpDecayChannels ()
 
void BroadcastAbortRun (G4bool softAbort)
 
- Public Member Functions inherited from G4RunManagerKernel
 G4RunManagerKernel ()
 
virtual ~G4RunManagerKernel ()
 
void DefineWorldVolume (G4VPhysicalVolume *worldVol, G4bool topologyIsChanged=true)
 
void WorkerDefineWorldVolume (G4VPhysicalVolume *worldVol, G4bool topologyIsChanged=true)
 
void SetPhysics (G4VUserPhysicsList *uPhys)
 
void InitializePhysics ()
 
G4bool RunInitialization (G4bool fakeRun=false)
 
void RunTermination ()
 
void UpdateRegion ()
 
void DumpRegion (const G4String &rname) const
 
void DumpRegion (G4Region *region=nullptr) const
 
void WorkerUpdateWorldVolume ()
 
void GeometryHasBeenModified ()
 
void PhysicsHasBeenModified ()
 
G4EventManagerGetEventManager () const
 
G4StackManagerGetStackManager () const
 
G4TrackingManagerGetTrackingManager () const
 
void SetPrimaryTransformer (G4PrimaryTransformer *pt)
 
G4PrimaryTransformerGetPrimaryTransformer () const
 
const G4StringGetVersionString () const
 
void SetVerboseLevel (G4int vl)
 
void SetGeometryToBeOptimized (G4bool vl)
 
void ResetNavigatorAtInitialization (G4bool val=true)
 
G4int GetNumberOfParallelWorld () const
 
void SetNumberOfParallelWorld (G4int i)
 
G4VUserPhysicsListGetPhysicsList () const
 
G4VPhysicalVolumeGetCurrentWorld () const
 
G4int GetNumberOfStaticAllocators () const
 

Static Public Member Functions

static G4WorkerThreadGetWorkerThread ()
 
static void InitializeWorker ()
 
static void ExecuteWorkerInit ()
 
static void ExecuteWorkerTask ()
 
static void TerminateWorkerRunEventLoop ()
 
static void TerminateWorker ()
 
static void TerminateWorkerRunEventLoop (G4WorkerTaskRunManager *)
 
static std::vector< G4String > & InitCommandStack ()
 
- Static Public Member Functions inherited from G4RunManagerKernel
static G4RunManagerKernelGetRunManagerKernel ()
 

Protected Member Functions

void SetupShadowProcess () const override
 
- Protected Member Functions inherited from G4RunManagerKernel
 G4RunManagerKernel (RMKType rmkType)
 
void SetupDefaultRegion ()
 
void SetupPhysics ()
 
void ResetNavigator ()
 
void BuildPhysicsTables (G4bool fakeRun)
 
void CheckRegions ()
 
void PropagateGenericIonID ()
 

Static Protected Attributes

static G4RUN_DLL std::vector< G4StringinitCmdStack = {}
 

Additional Inherited Members

- Public Types inherited from G4RunManagerKernel
enum  RMKType { sequentialRMK , masterRMK , workerRMK }
 
- Protected Attributes inherited from G4RunManagerKernel
RMKType runManagerKernelType
 
G4RegiondefaultRegion = nullptr
 
G4RegiondefaultRegionForParallelWorld = nullptr
 
G4bool geometryNeedsToBeClosed = true
 

Detailed Description

Definition at line 67 of file G4TaskRunManagerKernel.hh.

Constructor & Destructor Documentation

◆ G4TaskRunManagerKernel()

G4TaskRunManagerKernel::G4TaskRunManagerKernel ( )

Definition at line 69 of file G4TaskRunManagerKernel.cc.

70{
71 // This version of the constructor should never be called in sequential mode!
72#ifndef G4MULTITHREADED
74 msg << "Geant4 code is compiled without multi-threading support "
75 "(-DG4MULTITHREADED "
76 "is set to off).";
77 msg << " This type of RunManager can only be used in mult-threaded "
78 "applications.";
79 G4Exception("G4RunManagerKernel::G4RunManagerKernel()", "Run0109", FatalException, msg);
80#endif
81 // Set flag that a MT-type kernel has been instantiated
83}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
void SetMultithreadedApplication(G4bool value)

◆ ~G4TaskRunManagerKernel()

G4TaskRunManagerKernel::~G4TaskRunManagerKernel ( )
overridedefault

Member Function Documentation

◆ BroadcastAbortRun()

void G4TaskRunManagerKernel::BroadcastAbortRun ( G4bool softAbort)

Definition at line 319 of file G4TaskRunManagerKernel.cc.

320{
321 G4ConsumeParameters(softAbort);
322}
void G4ConsumeParameters(_Args &&...)
Definition templates.hh:177

◆ ExecuteWorkerInit()

void G4TaskRunManagerKernel::ExecuteWorkerInit ( )
static

Definition at line 219 of file G4TaskRunManagerKernel.cc.

220{
221 // because of TBB
222 if (G4MTRunManager::GetMasterThreadId() == G4ThisThread::get_id()) {
224 auto _fut = taskManager->async(ExecuteWorkerInit);
225 return _fut->get();
226 }
227
228 // this check is for TBB as there is not a way to run an initialization
229 // routine on each thread
230 if (!workerRM()) InitializeWorker();
231
232 auto& wrm = workerRM();
233 assert(wrm.get() != nullptr);
234 wrm->DoCleanup();
235}
PTL::TaskManager G4TaskManager
static G4ThreadId GetMasterThreadId()
static G4TaskRunManager * GetMasterRunManager()
std::shared_ptr< PackagedTask< RetT, Args... > > async(FuncT &&func, Args &&... args)
TaskManager * GetTaskManager() const

Referenced by G4SubEvtRunManager::CreateAndStartWorkers(), G4TaskRunManager::CreateAndStartWorkers(), and ExecuteWorkerInit().

◆ ExecuteWorkerTask()

void G4TaskRunManagerKernel::ExecuteWorkerTask ( )
static

Definition at line 239 of file G4TaskRunManagerKernel.cc.

240{
241 // because of TBB
242 if (G4MTRunManager::GetMasterThreadId() == G4ThisThread::get_id()) {
244 auto _fut = taskManager->async(ExecuteWorkerTask);
245 return _fut->get();
246 }
247
248 // this check is for TBB as there is not a way to run an initialization
249 // routine on each thread
250 if (!workerRM()) InitializeWorker();
251
252 auto& wrm = workerRM();
253 assert(wrm.get() != nullptr);
254 wrm->DoWork();
255}

Referenced by G4SubEvtRunManager::AddEventTask(), G4TaskRunManager::AddEventTask(), and ExecuteWorkerTask().

◆ GetWorkerThread()

G4WorkerThread * G4TaskRunManagerKernel::GetWorkerThread ( )
static

Definition at line 117 of file G4TaskRunManagerKernel.cc.

118{
119 return context().get();
120}

◆ InitCommandStack()

std::vector< G4String > & G4TaskRunManagerKernel::InitCommandStack ( )
static

Definition at line 295 of file G4TaskRunManagerKernel.cc.

296{
297 return initCmdStack;
298}
static G4RUN_DLL std::vector< G4String > initCmdStack

Referenced by G4SubEvtRunManager::CreateAndStartWorkers(), and G4TaskRunManager::CreateAndStartWorkers().

◆ InitializeWorker()

void G4TaskRunManagerKernel::InitializeWorker ( )
static

!!!!!!!!!!!!!!!!!!!!!!!!! !!!!! IMPORTANT !!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!

!!!!!!!!!!!!!!!!!!!!!!!!!

Definition at line 124 of file G4TaskRunManagerKernel.cc.

125{
126 if (context() && workerRM()) return;
127
128 G4TaskRunManager* mrm = G4TaskRunManager::GetMasterRunManager();
129 if (G4MTRunManager::GetMasterThreadId() == G4ThisThread::get_id()) {
130 G4TaskManager* taskManager = mrm->GetTaskManager();
131 auto _fut = taskManager->async(InitializeWorker);
132 _fut->wait();
133 return;
134 }
135
136 //!!!!!!!!!!!!!!!!!!!!!!!!!!
137 //!!!!!! IMPORTANT !!!!!!!!!
138 //!!!!!!!!!!!!!!!!!!!!!!!!!!
139 // Here is not sequential anymore and G4UserWorkerThreadInitialization is
140 // a shared user initialization class
141 // This means this method cannot use data memebers of G4RunManagerKernel
142 // unless they are invariant ("read-only") and can be safely shared.
143 // All the rest that is not invariant should be incapsualted into
144 // the context (or, as for wThreadContext be G4ThreadLocal)
145 //!!!!!!!!!!!!!!!!!!!!!!!!!!
146
148 context() = std::make_unique<G4WorkerThread>();
149
150 //============================
151 // Step-0: Thread ID
152 //============================
153 // Initliazie per-thread stream-output
154 // The following line is needed before we actually do IO initialization
155 // becasue the constructor of UI manager resets the IO destination.
156 context()->SetNumberThreads((G4int)mrm->GetThreadPool()->size());
157 context()->SetThreadId(G4int(G4ThreadPool::get_this_thread_id() - 1));
158 G4int thisID = context()->GetThreadId();
161
162 //============================
163 // Optimization: optional
164 //============================
165 // Enforce thread affinity if requested
166 context()->SetPinAffinity(mrm->GetPinAffinity());
167
168 //============================
169 // Step-1: Random number engine
170 //============================
171 // RNG Engine needs to be initialized by "cloning" the master one.
172 const CLHEP::HepRandomEngine* masterEngine = mrm->getMasterRandomEngine();
174
175 //============================
176 // Step-2: Initialize worker thread
177 //============================
178 if (mrm->GetUserWorkerInitialization() != nullptr)
180
181 if (mrm->GetUserActionInitialization() != nullptr) {
182 G4VSteppingVerbose* sv = mrm->GetUserActionInitialization()->InitializeSteppingVerbose();
183 if (sv != nullptr) G4VSteppingVerbose::SetInstance(sv);
184 }
185 // Now initialize worker part of shared objects (geometry/physics)
187 workerRM().reset(static_cast<G4WorkerTaskRunManager*>(
189 auto& wrm = workerRM();
190 wrm->SetWorkerThread(context().get());
191
192 //================================
193 // Step-3: Setup worker run manager
194 //================================
195 // Set the detector and physics list to the worker thread. Share with master
196 const G4VUserDetectorConstruction* detector = mrm->GetUserDetectorConstruction();
197 wrm->G4RunManager::SetUserInitialization(const_cast<G4VUserDetectorConstruction*>(detector));
198 const G4VUserPhysicsList* physicslist = mrm->GetUserPhysicsList();
199 wrm->SetUserInitialization(const_cast<G4VUserPhysicsList*>(physicslist));
200
201 //================================
202 // Step-4: Initialize worker run manager
203 //================================
204 if (mrm->GetUserActionInitialization() != nullptr)
206 if (mrm->GetUserWorkerInitialization() != nullptr)
208
209 workerRM()->Initialize();
210
211 for (auto& itr : initCmdStack)
213
214 wrm->ProcessUI();
215}
int G4int
Definition G4Types.hh:85
G4int GetPinAffinity() const
const CLHEP::HepRandomEngine * getMasterRandomEngine() const
const G4UserWorkerInitialization * GetUserWorkerInitialization() const
const G4VUserDetectorConstruction * GetUserDetectorConstruction() const
const G4VUserActionInitialization * GetUserActionInitialization() const
G4VUserActionInitialization * GetNonConstUserActionInitialization() const
const G4VUserPhysicsList * GetUserPhysicsList() const
const G4UserWorkerThreadInitialization * GetUserWorkerThreadInitialization() const
void SetUpForAThread(G4int tId)
G4int ApplyCommand(const char *aCommand)
static G4UImanager * GetUIpointer()
virtual void SetupRNGEngine(const CLHEP::HepRandomEngine *aRNGEngine) const
virtual G4WorkerRunManager * CreateWorkerRunManager() const
static void SetInstance(G4VSteppingVerbose *Instance)
virtual G4VSteppingVerbose * InitializeSteppingVerbose() const
virtual void Build() const =0
static void BuildGeometryAndPhysicsVector()
ThreadPool * GetThreadPool() const
static uintmax_t get_this_thread_id()
size_type size() const
G4int WorkerThreadJoinsPool()
void G4SetThreadId(G4int aNewValue)

Referenced by G4SubEvtRunManager::CreateAndStartWorkers(), G4TaskRunManager::CreateAndStartWorkers(), ExecuteWorkerInit(), ExecuteWorkerTask(), and InitializeWorker().

◆ SetUpDecayChannels()

void G4TaskRunManagerKernel::SetUpDecayChannels ( )

Definition at line 302 of file G4TaskRunManagerKernel.cc.

303{
305 pItr->reset();
306 while ((*pItr)()) {
307 G4DecayTable* dt = pItr->value()->GetDecayTable();
308 if (dt != nullptr) {
309 G4int nCh = dt->entries();
310 for (G4int i = 0; i < nCh; i++) {
311 dt->GetDecayChannel(i)->GetDaughter(0);
312 }
313 }
314 }
315}
G4VDecayChannel * GetDecayChannel(G4int index) const
G4int entries() const
G4DecayTable * GetDecayTable() const
void reset(G4bool ifSkipIon=true)
G4PTblDicIterator * GetIterator() const
static G4ParticleTable * GetParticleTable()
G4ParticleTableIterator< G4String, G4ParticleDefinition * > G4PTblDicIterator
G4ParticleDefinition * GetDaughter(G4int anIndex)

◆ SetupShadowProcess()

void G4TaskRunManagerKernel::SetupShadowProcess ( ) const
overrideprotectedvirtual

Reimplemented from G4RunManagerKernel.

Definition at line 87 of file G4TaskRunManagerKernel.cc.

88{
89 // Behavior is the same as base class (sequential mode)
90 // ShadowProcess pointer == process poitner
92}
virtual void SetupShadowProcess() const

◆ TerminateWorker()

void G4TaskRunManagerKernel::TerminateWorker ( )
static

Definition at line 266 of file G4TaskRunManagerKernel.cc.

267{
268 //===============================
269 // Step-6: Terminate worker thread
270 //===============================
271 G4TaskRunManager* mrm = G4TaskRunManager::GetMasterRunManager();
272 if ((mrm != nullptr) && (mrm->GetUserWorkerInitialization() != nullptr))
274
275 workerRM().reset();
276 context().reset();
277
279
281}
static void DestroyGeometryAndPhysicsVector()
G4int WorkerThreadLeavesPool()

Referenced by G4SubEvtRunManager::TerminateWorkers(), and G4TaskRunManager::TerminateWorkers().

◆ TerminateWorkerRunEventLoop() [1/2]

void G4TaskRunManagerKernel::TerminateWorkerRunEventLoop ( )
static

◆ TerminateWorkerRunEventLoop() [2/2]

void G4TaskRunManagerKernel::TerminateWorkerRunEventLoop ( G4WorkerTaskRunManager * wrm)
static

Definition at line 285 of file G4TaskRunManagerKernel.cc.

286{
287 if (wrm == nullptr) return;
288
289 wrm->TerminateEventLoop();
290 wrm->RunTermination();
291}

Member Data Documentation

◆ initCmdStack

std::vector< G4String > G4TaskRunManagerKernel::initCmdStack = {}
staticprotected

The documentation for this class was generated from the following files: