|
| RandomFunctionsImpl () |
| class constructor More...
|
|
int | Binomial (int ntot, double prob) |
| Generate binomial numbers. More...
|
|
double | BreitWigner (double mean, double gamma) |
| Return a number distributed following a BreitWigner function with mean and gamma. More...
|
|
void | Circle (double &x, double &y, double r) |
| Generates random vectors, uniformly distributed over a circle of given radius. More...
|
|
double | Exp (double tau) |
| Returns an exponential deviate. More...
|
|
double | GausACR (double mean, double sigma) |
| generate random numbers according to the Accemptance-Complemet-Ratio method More...
|
|
double | GausBM (double mean, double sigma) |
| generate Gaussian number using Box-Muller method More...
|
|
double | Landau (double mu, double sigma) |
| Generate a random number following a Landau distribution with location parameter mu and scale parameter sigma: Landau( (x-mu)/sigma ) More...
|
|
int | Poisson (double mean) |
| Generates a random integer N according to a Poisson law. More...
|
|
double | PoissonD (double mean) |
| Generates a random number according to a Poisson law. More...
|
|
void | Rannor (double &a, double &b) |
| Generate numbers distributed following a gaussian with mean=0 and sigma=1. More...
|
|
void | SetEngine (void *r) |
|
void | Sphere (double &x, double &y, double &z, double r) |
| Generates random vectors, uniformly distributed over the surface of a sphere of given radius. More...
|
|
double | Uniform (double a) |
| Returns a uniform deviate on the interval (0, x1). More...
|
|
double | Uniform (double a, double b) |
| generate random numbers following a Uniform distribution in the [a,b] interval More...
|
|