Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4UserWorkerThreadInitialization.cc
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//
27#include "G4AutoLock.hh"
29#include "G4UImanager.hh"
31#include "G4VUserPhysicsList.hh"
32#include "G4WorkerRunManager.hh"
33#include "G4WorkerThread.hh"
34#include <sstream>
35
36// Will need this for TPMalloc
37//#ifdef G4MULTITHREADED
38//#define TPMALLOCDEFINESTUB
39//#include "tpmalloc/tpmallocstub.h"
40//#endif
41
42#ifdef G4MULTITHREADED
44 G4WorkerThread* wTC)
45{
46 // Note: this method is called by G4MTRunManager, here we are still sequential
47 // Create a new thread/worker structure
48 G4Thread* worker = new G4Thread;
50 return worker;
51}
52#else
55{
56 return new G4Thread;
57}
58#endif
59
60// Avoid compilation warning in sequential
61#ifdef G4MULTITHREADED
63{
64 G4THREADJOIN(*aThread);
65}
66#else
68#endif
69
71
73
74namespace
75{
76 G4Mutex rngCreateMutex = G4MUTEX_INITIALIZER;
77}
78
79#include "globals.hh"
81 const CLHEP::HepRandomEngine* aNewRNG) const
82{
83 G4AutoLock l(&rngCreateMutex);
84 // No default available, let's create the instance of random stuff
85 // A Call to this just forces the creation to defaults
86 G4Random::getTheEngine();
87 // Poor man's solution to check which RNG Engine is used in master thread
88 CLHEP::HepRandomEngine* retRNG = 0;
89
90 // Need to make these calls thread safe
91 if(dynamic_cast<const CLHEP::HepJamesRandom*>(aNewRNG))
92 {
93 retRNG = new CLHEP::HepJamesRandom;
94 }
95 if(dynamic_cast<const CLHEP::MixMaxRng*>(aNewRNG))
96 {
97 retRNG = new CLHEP::MixMaxRng;
98 }
99 if(dynamic_cast<const CLHEP::RanecuEngine*>(aNewRNG))
100 {
101 retRNG = new CLHEP::RanecuEngine;
102 }
103 if(dynamic_cast<const CLHEP::Ranlux64Engine*>(aNewRNG))
104 {
105 const CLHEP::Ranlux64Engine* theRNG =
106 dynamic_cast<const CLHEP::Ranlux64Engine*>(aNewRNG);
107 retRNG = new CLHEP::Ranlux64Engine(123, theRNG->getLuxury());
108 }
109 if(dynamic_cast<const CLHEP::MTwistEngine*>(aNewRNG))
110 {
111 retRNG = new CLHEP::MTwistEngine;
112 }
113 if(dynamic_cast<const CLHEP::DualRand*>(aNewRNG))
114 {
115 retRNG = new CLHEP::DualRand;
116 }
117 if(dynamic_cast<const CLHEP::RanluxEngine*>(aNewRNG))
118 {
119 const CLHEP::RanluxEngine* theRNG =
120 dynamic_cast<const CLHEP::RanluxEngine*>(aNewRNG);
121 retRNG = new CLHEP::RanluxEngine(123, theRNG->getLuxury());
122 }
123 if(dynamic_cast<const CLHEP::RanshiEngine*>(aNewRNG))
124 {
125 retRNG = new CLHEP::RanshiEngine;
126 }
127
128 if(retRNG != 0)
129 {
130 G4Random::setTheEngine(retRNG);
131 }
132 else
133 {
134 // Does a new method, such as aNewRng->newEngine() exist to clone it ?
136 msg << " Unknown type of RNG Engine - " << G4endl
137 << " Can cope only with HepJamesRandom, MixMaxRng, Ranecu, Ranlux64,"
138 << " MTwistEngine, DualRand, Ranlux or Ranshi." << G4endl
139 << " Cannot clone this type of RNG engine, as required for this thread"
140 << G4endl << " Aborting " << G4endl;
141 G4Exception("G4UserWorkerInitializition::SetupRNGEngine()", "Run0122",
142 FatalException, msg);
143 }
144}
145
147 const
148{
149 return new G4WorkerRunManager();
150}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
std::ostringstream G4ExceptionDescription
Definition: G4Exception.hh:40
#define G4MUTEX_INITIALIZER
Definition: G4Threading.hh:85
#define G4THREADJOIN(worker)
Definition: G4Threading.hh:259
void G4THREADCREATE(_Worker *&worker, _Func func, _Args... args)
Definition: G4Threading.hh:268
G4DummyThread G4Thread
Definition: G4Threading.hh:247
std::mutex G4Mutex
Definition: G4Threading.hh:81
#define G4endl
Definition: G4ios.hh:57
int getLuxury() const
Definition: RanluxEngine.h:90
static void StartThread(G4WorkerThread *context)
virtual void SetupRNGEngine(const CLHEP::HepRandomEngine *aRNGEngine) const
virtual G4Thread * CreateAndStartWorker(G4WorkerThread *workerThreadContext)
virtual G4WorkerRunManager * CreateWorkerRunManager() const