Go to the documentation of this file.
32 #include <CLHEP/Random/Randomize.h>
35 #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11) && \
36 !__has_feature(cxx_thread_local))
37 #define CLANG_NOSTDTLS
41 #if (defined(G4MULTITHREADED) && !defined(G4USE_STD11)) || \
42 (defined(CLANG_NOSTDTLS))
58 #define G4RandFlat G4MTRandFlat
59 #define G4RandBit G4MTRandBit
60 #define G4RandGamma G4MTRandGamma
61 #define G4RandGauss G4MTRandGaussQ
62 #define G4RandExponential G4MTRandExponential
63 #define G4RandGeneral G4MTRandGeneral
64 #define G4Random G4MTHepRandom
66 #define G4UniformRand() G4MTHepRandom::getTheEngine()->flat()
70 #define G4RandFlatArray G4MTRandFlat::shootArray
71 #define G4RandFlatInt G4MTRandFlat::shootInt
72 #define G4RandGeneralTmp G4MTRandGeneral
74 #else // Sequential mode or supporting C++11 standard
78 #include <CLHEP/Random/RandFlat.h>
79 #include <CLHEP/Random/RandBit.h>
80 #include <CLHEP/Random/RandGamma.h>
81 #include <CLHEP/Random/RandGaussQ.h>
82 #include <CLHEP/Random/RandPoissonQ.h>
83 #include <CLHEP/Random/RandExponential.h>
84 #include <CLHEP/Random/RandGeneral.h>
86 #define G4RandStat CLHEP::HepStat
87 #define G4RandFlat CLHEP::RandFlat
88 #define G4RandBit CLHEP::RandBit
89 #define G4RandGamma CLHEP::RandGamma
90 #define G4RandGauss CLHEP::RandGaussQ
91 #define G4RandExponential CLHEP::RandExponential
92 #define G4RandGeneral CLHEP::RandGeneral
93 #define G4Random CLHEP::HepRandom
95 #define G4UniformRand() CLHEP::HepRandom::getTheEngine()->flat()
97 #endif // G4MULTITHREADED