00001 /*************************************************************************** 00002 * 00003 * $Id: RandomEngine.cc,v 1.1 1999/01/30 03:59:01 fisyak Exp $ 00004 * 00005 * Author: Gabriele Cosmo - Created: 5th September 1995 00006 * modified SCL bl 00007 *************************************************************************** 00008 * 00009 * Description: 00010 * RandomEngine.cc,v 1.4 1997/04/04 13:22:34 00011 * ----------------------------------------------------------------------- 00012 * HEP Random 00013 * --- HepRandomEngine --- 00014 * class implementation file 00015 * ----------------------------------------------------------------------- 00016 * This file is part of Geant4 (simulation toolkit for HEP). 00017 * 00018 *************************************************************************** 00019 * 00020 * $Log: RandomEngine.cc,v $ 00021 * Revision 1.1 1999/01/30 03:59:01 fisyak 00022 * Root Version of StarClassLibrary 00023 * 00024 * Revision 1.1 1999/01/23 00:29:10 ullrich 00025 * Initial Revision 00026 * 00027 **************************************************************************/ 00028 #include "RandomEngine.h" 00029 00030 // ----------------------------- 00031 // Static members initialisation 00032 // ----------------------------- 00033 00034 #include "SeedTable.h" 00035 00036 //------------------------- HepRandomEngine ------------------------------ 00037 00038 HepRandomEngine::HepRandomEngine() : theSeeds(&theSeed) { 00039 theSeed = 19780503; 00040 } 00041 00042 HepRandomEngine::~HepRandomEngine() {}
1.5.9