Logo ROOT   6.12/07
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 #include "Math/TRandomEngine.h"
16 
17 //////////////////////////////////////////////////////////////////////////
18 // //
19 // TRandom //
20 // //
21 // Simple prototype random number generator class (periodicity = 10**9) //
22 // //
23 //////////////////////////////////////////////////////////////////////////
24 
25 #include "TNamed.h"
26 
27 class TRandom : public TNamed, public ROOT::Math::TRandomEngine {
28 
29 protected:
30  UInt_t fSeed; //Random number generator seed
31 
32 public:
33  TRandom(UInt_t seed=65539);
34  virtual ~TRandom();
35  virtual Int_t Binomial(Int_t ntot, Double_t prob);
36  virtual Double_t BreitWigner(Double_t mean=0, Double_t gamma=1);
37  virtual void Circle(Double_t &x, Double_t &y, Double_t r);
38  virtual Double_t Exp(Double_t tau);
39  virtual Double_t Gaus(Double_t mean=0, Double_t sigma=1);
40  virtual UInt_t GetSeed() const {return fSeed;}
41  virtual UInt_t Integer(UInt_t imax);
42  virtual Double_t Landau(Double_t mean=0, Double_t sigma=1);
43  virtual Int_t Poisson(Double_t mean);
44  virtual Double_t PoissonD(Double_t mean);
45  virtual void Rannor(Float_t &a, Float_t &b);
46  virtual void Rannor(Double_t &a, Double_t &b);
47  virtual void ReadRandom(const char *filename);
48  virtual void SetSeed(ULong_t seed=0);
49  virtual Double_t Rndm();
50  // keep for backward compatibility
51  virtual Double_t Rndm(Int_t ) { return Rndm(); }
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,3) //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:481
virtual Double_t PoissonD(Double_t mean)
Generates a random number according to a Poisson law.
Definition: TRandom.cxx:435
float Float_t
Definition: RtypesCore.h:53
virtual Int_t Binomial(Int_t ntot, Double_t prob)
Generates a random integer N according to the binomial law.
Definition: TRandom.cxx:193
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:256
virtual void RndmArray(Int_t n, Float_t *array)
Return an array of n random numbers uniformly distributed in ]0,1].
Definition: TRandom.cxx:569
virtual ~TRandom()
Default destructor.
Definition: TRandom.cxx:177
int Int_t
Definition: RtypesCore.h:41
static const double x2[5]
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:320
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t tau
Definition: TRolke.cxx:630
This is the base class for the ROOT Random number generators.
Definition: TRandom.h:27
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
virtual void SetSeed(ULong_t seed=0)
Set the random generator seed.
Definition: TRandom.cxx:589
virtual Double_t Rndm(Int_t)
Definition: TRandom.h:51
virtual UInt_t Integer(UInt_t imax)
Returns a random integer on [ 0, imax-1 ].
Definition: TRandom.cxx:341
const Double_t sigma
virtual Double_t Rndm()
Machine independent random number generator.
Definition: TRandom.cxx:533
double gamma(double x)
ROOT::R::TRInterface & r
Definition: Object.C:4
auto * a
Definition: textangle.C:12
unsigned int UInt_t
Definition: RtypesCore.h:42
TRandom(UInt_t seed=65539)
Default constructor. For seed see SetSeed().
Definition: TRandom.cxx:168
virtual void WriteRandom(const char *filename) const
Writes random generator status to filename.
Definition: TRandom.cxx:645
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:221
static const double x1[5]
UInt_t fSeed
Definition: TRandom.h:30
double Double_t
Definition: RtypesCore.h:55
unsigned long ULong_t
Definition: RtypesCore.h:51
virtual void ReadRandom(const char *filename)
Reads saved random generator status from filename.
Definition: TRandom.cxx:511
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:627
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:207
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:609
you should not use this method at all Int_t Int_t z
Definition: TRolke.cxx:630
#define R__EXTERN
Definition: DllImport.h:27
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
virtual Int_t Poisson(Double_t mean)
Generates a random integer N according to a Poisson law.
Definition: TRandom.cxx:383
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:361
const Int_t n
Definition: legend1.C:16
virtual UInt_t GetSeed() const
Definition: TRandom.h:40
virtual Double_t Exp(Double_t tau)
Returns an exponential deviate.
Definition: TRandom.cxx:233