ROOT  6.06/09
Reference Guide
TRandom.h
Go to the documentation of this file.
1 // @(#)root/mathcore:$Id$
2 // Author: Rene Brun 15/12/95
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TRandom
13 #define ROOT_TRandom
14 
15 
16 
17 //////////////////////////////////////////////////////////////////////////
18 // //
19 // TRandom //
20 // //
21 // Simple prototype random number generator class (periodicity = 10**9) //
22 // //
23 //////////////////////////////////////////////////////////////////////////
24 
25 #ifndef ROOT_TNamed
26 #include "TNamed.h"
27 #endif
28 
29 class TRandom : public TNamed {
30 
31 protected:
32  UInt_t fSeed; //Random number generator seed
33 
34 public:
35  TRandom(UInt_t seed=65539);
36  virtual ~TRandom();
37  virtual Int_t Binomial(Int_t ntot, Double_t prob);
38  virtual Double_t BreitWigner(Double_t mean=0, Double_t gamma=1);
39  virtual void Circle(Double_t &x, Double_t &y, Double_t r);
40  virtual Double_t Exp(Double_t tau);
41  virtual Double_t Gaus(Double_t mean=0, Double_t sigma=1);
42  virtual UInt_t GetSeed() const {return fSeed;}
43  virtual UInt_t Integer(UInt_t imax);
44  virtual Double_t Landau(Double_t mean=0, Double_t sigma=1);
45  virtual Int_t Poisson(Double_t mean);
46  virtual Double_t PoissonD(Double_t mean);
47  virtual void Rannor(Float_t &a, Float_t &b);
48  virtual void Rannor(Double_t &a, Double_t &b);
49  virtual void ReadRandom(const char *filename);
50  virtual void SetSeed(UInt_t seed=0);
51  virtual Double_t Rndm(Int_t i=0);
52  virtual void RndmArray(Int_t n, Float_t *array);
53  virtual void RndmArray(Int_t n, Double_t *array);
54  virtual void Sphere(Double_t &x, Double_t &y, Double_t &z, Double_t r);
55  virtual Double_t Uniform(Double_t x1=1);
57  virtual void WriteRandom(const char *filename) const;
58 
59  ClassDef(TRandom,1) //Simple Random number generator (periodicity = 10**9)
60 };
61 
63 
64 #endif
virtual void Rannor(Float_t &a, Float_t &b)
Return 2 numbers distributed following a gaussian with mean=0 and sigma=1.
Definition: TRandom.cxx:460
virtual Double_t PoissonD(Double_t mean)
Generates a random number according to a Poisson law.
Definition: TRandom.cxx:414
float Float_t
Definition: RtypesCore.h:53
virtual Double_t Rndm(Int_t i=0)
Machine independent random number generator.
Definition: TRandom.cxx:512
virtual Int_t Binomial(Int_t ntot, Double_t prob)
Generates a random integer N according to the binomial law.
Definition: TRandom.cxx:172
virtual Double_t Gaus(Double_t mean=0, Double_t sigma=1)
Samples a random number from the standard Normal (Gaussian) Distribution with the given mean and sigm...
Definition: TRandom.cxx:235
virtual void RndmArray(Int_t n, Float_t *array)
Return an array of n random numbers uniformly distributed in ]0,1].
Definition: TRandom.cxx:548
virtual ~TRandom()
Default destructor.
Definition: TRandom.cxx:156
static const char * filename()
virtual void WriteRandom(const char *filename) const
Writes random generator status to filename.
Definition: TRandom.cxx:624
int Int_t
Definition: RtypesCore.h:41
TArc * a
Definition: textangle.C:12
virtual void SetSeed(UInt_t seed=0)
Set the random generator seed.
Definition: TRandom.cxx:568
static const double x2[5]
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual UInt_t GetSeed() const
Definition: TRandom.h:42
This is the base class for the ROOT Random number generators.
Definition: TRandom.h:29
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:33
virtual UInt_t Integer(UInt_t imax)
Returns a random integer on [ 0, imax-1 ].
Definition: TRandom.cxx:320
double gamma(double x)
ROOT::R::TRInterface & r
Definition: Object.C:4
unsigned int UInt_t
Definition: RtypesCore.h:42
TRandom(UInt_t seed=65539)
R__EXTERN TRandom * gRandom
Definition: TRandom.h:62
virtual void Circle(Double_t &x, Double_t &y, Double_t r)
Generates random vectors, uniformly distributed over a circle of given radius.
Definition: TRandom.cxx:200
static const double x1[5]
UInt_t fSeed
Definition: TRandom.h:32
double Double_t
Definition: RtypesCore.h:55
virtual void ReadRandom(const char *filename)
Reads saved random generator status from filename.
Definition: TRandom.cxx:490
Double_t y[n]
Definition: legend1.C:17
virtual Double_t Uniform(Double_t x1=1)
Returns a uniform deviate on the interval (0, x1).
Definition: TRandom.cxx:606
virtual Double_t BreitWigner(Double_t mean=0, Double_t gamma=1)
Return a number distributed following a BreitWigner function with mean and gamma. ...
Definition: TRandom.cxx:186
virtual void Sphere(Double_t &x, Double_t &y, Double_t &z, Double_t r)
Generates random vectors, uniformly distributed over the surface of a sphere of given radius...
Definition: TRandom.cxx:588
#define R__EXTERN
Definition: DllImport.h:27
virtual Int_t Poisson(Double_t mean)
Generates a random integer N according to a Poisson law.
Definition: TRandom.cxx:362
virtual Double_t Landau(Double_t mean=0, Double_t sigma=1)
Generate a random number following a Landau distribution with location parameter mu and scale paramet...
Definition: TRandom.cxx:340
const Int_t n
Definition: legend1.C:16
virtual Double_t Exp(Double_t tau)
Returns an exponential deviate.
Definition: TRandom.cxx:212