44#if COMPILATIONTYPE == 1
47 theRandom=
new TRandom2(seed);
53 theRandom->SetSeed(seed);
56 return theRandom->GetSeed();
59 return theRandom->Uniform(Xmin,Xmax);
62 return theRandom->Integer(IntegerMax);
65 return theRandom->Exp(tau);
68 return theRandom->Gaus(mean,sigma);
71 return theRandom->Poisson(mean);
74void NuDEXException(
const char* originOfException,
const char* exceptionCode,
const char* ){
75 std::cout<<
" ############## Error in "<<originOfException<<
", line "<<exceptionCode<<
" ##############"<<std::endl; exit(1);
79#elif COMPILATIONTYPE == 2
82 theEngine=
new CLHEP::HepJamesRandom(seed);
83 theRandFlat=
new CLHEP::RandFlat(theEngine);
84 theRandExponential=
new CLHEP::RandExponential(theEngine);
85 theRandGauss=
new CLHEP::RandGauss(theEngine);
86 theRandPoisson=
new CLHEP::RandPoisson(theEngine);
98 theEngine->setSeed(seed);
99 theRandGauss->setF(
false);
102 return (
unsigned int)theEngine->getSeed();
105 return theRandFlat->fire(Xmin,Xmax);
108 return (
unsigned int)theRandFlat->fireInt(IntegerMax);
111 return theRandExponential->fire(tau);
114 return theRandGauss->fire(mean,sigma);
117 return theRandPoisson->fire(mean);
120void NuDEXException(
const char* originOfException,
const char* exceptionCode,
const char* description){
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
void NuDEXException(const char *originOfException, const char *exceptionCode, const char *description)
G4NuDEXRandom(unsigned int seed)
G4long Poisson(G4double mean)
G4double Uniform(G4double Xmin=0, G4double Xmax=1)
void SetSeed(unsigned int seed)
G4double Gaus(G4double mean=0, G4double sigma=1)
unsigned int Integer(unsigned int IntegerMax)
G4double Exp(G4double tau)