StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
RandomEngine.cc
1 /***************************************************************************
2  *
3  * $Id: RandomEngine.cc,v 1.1 1999/01/30 03:59:01 fisyak Exp $
4  *
5  * Author: Gabriele Cosmo - Created: 5th September 1995
6  * modified SCL bl
7  ***************************************************************************
8  *
9  * Description:
10  * RandomEngine.cc,v 1.4 1997/04/04 13:22:34
11  * -----------------------------------------------------------------------
12  * HEP Random
13  * --- HepRandomEngine ---
14  * class implementation file
15  * -----------------------------------------------------------------------
16  * This file is part of Geant4 (simulation toolkit for HEP).
17  *
18  ***************************************************************************
19  *
20  * $Log: RandomEngine.cc,v $
21  * Revision 1.1 1999/01/30 03:59:01 fisyak
22  * Root Version of StarClassLibrary
23  *
24  * Revision 1.1 1999/01/23 00:29:10 ullrich
25  * Initial Revision
26  *
27  **************************************************************************/
28 #include "RandomEngine.h"
29 
30 // -----------------------------
31 // Static members initialisation
32 // -----------------------------
33 
34 #include "SeedTable.h"
35 
36 //------------------------- HepRandomEngine ------------------------------
37 
38 HepRandomEngine::HepRandomEngine() : theSeeds(&theSeed) {
39  theSeed = 19780503;
40 }
41 
42 HepRandomEngine::~HepRandomEngine() {}