BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenBase/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
24
25class EvtRandomEngine;
26
28
29public:
30
31 static double Flat(double min, double max);
32 static double Flat(double max);
33 static double Flat();
34
35 static double random();
36
37 //This class does not take ownership of the random engine;
38 //the caller needs to make sure that the engine is not
39 //destroyed.
40 static void setRandomEngine(EvtRandomEngine* randomEngine);
41
42private:
43
44 static EvtRandomEngine* _randomEngine;
45
46};
47
48#endif
49
static void setRandomEngine(EvtRandomEngine *randomEngine)