74 if (
this == &eng)
return *
this;
112 int status = gsl_qrng_get(
fQRng->
Rng(),
x );
113 return (status == 0);
120 for (
unsigned int i = 0; i < n; ++i ) {
121 status |= gsl_qrng_get(
fQRng->
Rng(), &xtmp[0] );
130 for (
double * itr = begin; itr != end; itr+=
fQRng->
Dimension() ) {
131 status |= gsl_qrng_get(
fQRng->
Rng(), itr );
142 const char * name = gsl_qrng_name(
fQRng->
Rng() );
143 if (!name)
return std::string();
144 return std::string( name);
151 return gsl_qrng_size(
fQRng->
Rng() );
unsigned int NDim() const
return the dimension of generator
Namespace for new ROOT classes and functions.
void Allocate(unsigned int dimension)
GSLQuasiRandomEngine & operator=(const GSLQuasiRandomEngine &eng)
Assignment operator : make a deep copy of the contained GSL generator.
void SetType(GSLQRngWrapper *r)
internal method used by the derived class to set the type of generators
bool GenerateArray(double *begin, double *end) const
Generate an array of quasi random numbers The iterators points to the random numbers.
void Initialize(unsigned int dimension)
initialize the generator giving the dimension of the sequence If no rng is present the default one ba...
unsigned int Size() const
return the state size of generator
virtual ~GSLQuasiRandomEngine()
call Terminate()
std::string Name() const
return name of generator
* x
Deprecated and error prone model selection interface.
bool Skip(unsigned int n) const
Skip the next n random numbers.
unsigned int Dimension() const
void Terminate()
delete pointer to contained rng
Namespace for new Math classes and functions.
GSLQRngWrapper class to wrap gsl_qrng structure.
GSLQuasiRandomEngine Base class for all GSL quasi random engines, normally user instantiate the deriv...
GSLQuasiRandomEngine()
default constructor.
double operator()() const
Generate a random number between ]0,1[.