BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtRandom.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed jointly
5// for the BaBar and CLEO collaborations. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/COPYRIGHT
9// Copyright (C) 1998 Caltech, UCSB
10//
11// Module: EvtGen/EvtRandom.hh
12//
13// Description:Source of random numbers for EvtGen code
14//
15// Modification history:
16//
17// RYD March 24, 1998 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EVTRANDOM_HH
22#define EVTRANDOM_HH
23
24class EvtRandomEngine;
25
26class EvtRandom {
27
28public:
29 static double Flat( double min, double max );
30 static double Flat( double max );
31 static double Flat();
32
33 static double random();
34
35 // This class does not take ownership of the random engine;
36 // the caller needs to make sure that the engine is not
37 // destroyed.
38 static void setRandomEngine( EvtRandomEngine* randomEngine );
39
40private:
41 static EvtRandomEngine* _randomEngine;
42};
43
44#endif
#define min(a, b)
#define max(a, b)
static double random()
Definition EvtRandom.cc:39
static double Flat()
Definition EvtRandom.cc:69
static void setRandomEngine(EvtRandomEngine *randomEngine)
Definition EvtRandom.cc:35