1 #include "CLHEP/Random/DoubConv.h"
3 #include "CLHEP/Random/RandExpZiggurat.h"
10 CLHEP_THREAD_LOCAL
unsigned long RandExpZiggurat::kn[128], RandExpZiggurat::ke[256];
11 CLHEP_THREAD_LOCAL
float RandExpZiggurat::wn[128],RandExpZiggurat::fn[128],RandExpZiggurat::we[256],
RandExpZiggurat::fe[256];
12 CLHEP_THREAD_LOCAL
bool RandExpZiggurat::ziggurat_is_init =
false;
18 RandExpZiggurat::~RandExpZiggurat() {
19 if ( deleteEngine )
delete localEngine;
22 RandExpZiggurat::RandExpZiggurat(
const RandExpZiggurat&
right) : HepRandom(right),defaultMean(right.defaultMean)
26 double RandExpZiggurat::operator()()
28 return fire( defaultMean );
31 void RandExpZiggurat::shootArray(
const int size,
float* vect,
float mean )
33 for (
int i=0; i<size; ++i) vect[i] =
shoot(mean);
36 void RandExpZiggurat::shootArray(
const int size,
double* vect,
double mean )
38 for (
int i=0; i<size; ++i) vect[i] =
shoot(mean);
41 void RandExpZiggurat::shootArray(HepRandomEngine* anEngine,
const int size,
float* vect,
float mean )
43 for (
int i=0; i<size; ++i) vect[i] =
shoot(anEngine, mean);
46 void RandExpZiggurat::shootArray(HepRandomEngine* anEngine,
const int size,
double* vect,
double mean )
48 for (
int i=0; i<size; ++i) vect[i] =
shoot(anEngine, mean);
51 void RandExpZiggurat::fireArray(
const int size,
float* vect)
53 for (
int i=0; i<size; ++i) vect[i] = fire( defaultMean );
56 void RandExpZiggurat::fireArray(
const int size,
double* vect)
58 for (
int i=0; i<size; ++i) vect[i] = fire( defaultMean );
61 void RandExpZiggurat::fireArray(
const int size,
float* vect,
float mean )
63 for (
int i=0; i<size; ++i) vect[i] = fire( mean );
66 void RandExpZiggurat::fireArray(
const int size,
double* vect,
double mean )
68 for (
int i=0; i<size; ++i) vect[i] = fire( mean );
71 std::ostream & RandExpZiggurat::put ( std::ostream & os )
const {
72 int pr=os.precision(20);
73 std::vector<unsigned long> t(2);
74 os <<
" " <<
name() <<
"\n";
76 t = DoubConv::dto2longs(defaultMean);
77 os << defaultMean <<
" " << t[0] <<
" " << t[1] <<
"\n";
81 int pr=os.precision(20);
82 os <<
" " <<
name() <<
"\n";
83 os << defaultMean <<
"\n";
89 std::istream & RandExpZiggurat::get ( std::istream & is ) {
92 if (inName !=
name()) {
93 is.clear(std::ios::badbit | is.rdstate());
94 std::cerr <<
"Mismatch when expecting to read state of a "
95 <<
name() <<
" distribution\n"
96 <<
"Name found was " << inName
97 <<
"\nistream is left in the badbit state\n";
100 if (possibleKeywordInput(is,
"Uvec", defaultMean)) {
101 std::vector<unsigned long> t(2);
102 is >> defaultMean >> t[0] >> t[1]; defaultMean = DoubConv::longs2double(t);
110 float RandExpZiggurat::ziggurat_efix(
unsigned long jz,HepRandomEngine* anEngine)
112 if(!ziggurat_is_init) ziggurat_init();
114 unsigned long iz=jz&255;
119 if(iz==0)
return (7.69711-std::log(ziggurat_UNI(anEngine)));
121 if(
fe[iz]+ziggurat_UNI(anEngine)*(
fe[iz-1]-
fe[iz]) < std::exp(-x) )
return (x);
124 jz=ziggurat_SHR3(anEngine);
126 if(jz<ke[iz])
return (jz*we[iz]);
130 bool RandExpZiggurat::ziggurat_init()
132 const double rzm1 = 2147483648.0, rzm2 = 4294967296.;
133 double dn=3.442619855899,tn=dn,vn=9.91256303526217e-3, q;
134 double de=7.697117470131487, te=de, ve=3.949659822581572e-3;
138 q=vn/std::exp(-.5*dn*dn);
139 kn[0]=(
unsigned long)((dn/q)*rzm1);
146 fn[127]=std::exp(-.5*dn*dn);
148 for(i=126;i>=1;i--) {
149 dn=std::sqrt(-2.*std::log(vn/dn+std::exp(-.5*dn*dn)));
150 kn[i+1]=(
unsigned long)((dn/tn)*rzm1);
152 fn[i]=std::exp(-.5*dn*dn);
157 q = ve/std::exp(-de);
158 ke[0]=(
unsigned long)((de/q)*rzm2);
165 fe[255]=std::exp(-de);
167 for(i=254;i>=1;i--) {
168 de=-std::log(ve/de+std::exp(-de));
169 ke[i+1]= (
unsigned long)((de/te)*rzm2);
174 ziggurat_is_init=
true;
ThreeVector shoot(const G4int Ap, const G4int Af)
static int engine(pchar, pchar, double &, pchar &, const dic_type &)