45 : theGenerator( &theDefaultGenerator, do_nothing_deleter() )
46 , theEngine ( &theDefaultEngine, do_nothing_deleter() )
49 defaults(defaults
const& other) =
delete;
50 defaults
const& operator=(defaults
const&) =
delete;
52 void resetEngine( HepRandomEngine * newEngine ) {
53 theEngine.reset( newEngine );
56 void resetEngine( HepRandomEngine & newEngine ) {
57 theEngine.reset( &newEngine, do_nothing_deleter() );
60 bool ensureInitialized() {
61 assert( theGenerator.get() != 0 && theEngine.get() != 0 );
70 HepRandom theDefaultGenerator;
71 MixMaxRng theDefaultEngine;
75 std::shared_ptr<HepRandom > theGenerator;
76 std::shared_ptr<HepRandomEngine> theEngine;
80#ifdef CLHEP_USE_ATOMIC
86 class ThreadSafeDefaultsCache {
89 ThreadSafeDefaultsCache();
92 ~ThreadSafeDefaultsCache();
95 defaults* createNewDefaults();
103 DefaultsNode(DefaultsNode* iNext);
104 DefaultsNode
const* next()
const {
return next_; }
105 void setNext(DefaultsNode* v) { next_ = v; }
106 defaults* addressOfDefaults() {
return &defaults_; }
113 std::atomic<DefaultsNode*> front_;
116 ThreadSafeDefaultsCache::ThreadSafeDefaultsCache() :
120 defaults* ThreadSafeDefaultsCache::createNewDefaults() {
121 DefaultsNode* expected = front_.load();
122 DefaultsNode* newNode =
new DefaultsNode(expected);
123 while (!front_.compare_exchange_strong(expected, newNode)) {
125 newNode->setNext(expected);
127 return newNode->addressOfDefaults();
130 ThreadSafeDefaultsCache::DefaultsNode::DefaultsNode(DefaultsNode* iNext) :
135 ThreadSafeDefaultsCache::~ThreadSafeDefaultsCache() {
136 DefaultsNode
const* node = front_.load();
138 DefaultsNode
const* next = node->next();
144 defaults & theDefaults() {
156 static ThreadSafeDefaultsCache defaultsForAllThreads;
159 static CLHEP_THREAD_LOCAL defaults* theDefaults = defaultsForAllThreads.createNewDefaults();
167 defaults & theDefaults() {
168 static defaults theDefaults;
188 theDefaults().resetEngine( algorithm );
193 theDefaults().resetEngine( algorithm );
201 return theDefaults().theEngine->flat();
206 theDefaults().theEngine->flatArray(size,vect);
215 std::cerr <<
"HepRandom::engine() called -- there is no assigned engine!\n";
216 return *theDefaults().theEngine.get();
236 theDefaults().theEngine->setSeed(seed,lux);
241 return theDefaults().theEngine->getSeed();
246 theDefaults().theEngine->setSeeds(seeds,aux);
251 return theDefaults().theEngine->getSeeds();
256 if ((index >= 0) && (index < 215)) {
265 return theDefaults().theGenerator.get();
270 return theDefaults().theEngine.get();
280 theDefaults().theEngine->saveStatus( filename );
285 theDefaults().theEngine->restoreStatus( filename );
308 theDefaults().theEngine->showStatus();
313 return static_cast<int>( theDefaults().ensureInitialized() );
std::istream & operator>>(std::istream &s, G4BetaDecayType &q)
std::ostream & operator<<(std::ostream &out, const G4CellScoreComposer &ps)
static HepRandom * getTheGenerator()
static HepRandomEngine * getTheEngine()
static const long * getTheSeeds()
virtual double operator()()
void flatArray(const int size, double *vect)
static std::ostream & saveStaticRandomStates(std::ostream &os)
static std::ostream & saveFullState(std::ostream &os)
virtual HepRandomEngine & engine()
static std::istream & restoreFullState(std::istream &is)
static void restoreEngineStatus(const char filename[]="Config.conf")
static void showEngineStatus()
virtual std::istream & get(std::istream &is)
static int createInstance()
static const long seedTable[215][2]
static void setTheSeeds(const long *seeds, int aux=-1)
static void setTheSeed(long seed, int lxr=3)
virtual std::ostream & put(std::ostream &os) const
static void setTheEngine(HepRandomEngine *theNewEngine)
virtual std::string name() const
static void saveEngineStatus(const char filename[]="Config.conf")
static void getTheTableSeeds(long *seeds, int index)
static std::istream & restoreStaticRandomStates(std::istream &is)
static std::istream & restore(std::istream &is)
static std::ostream & save(std::ostream &os)
#define CLHEP_THREAD_LOCAL