// $Id: DRand48Engine.h,v 1.25 2002/05/07 16:47:33 mf Exp $ // -*- C++ -*- // // ----------------------------------------------------------------------- // HEP Random // --- DRand48Engine --- // class header file // ----------------------------------------------------------------------- // This file is part of Geant4 (simulation toolkit for HEP). // // Random engine using drand48() and srand48() functions from C standard // library to implement the flat() basic distribution and for setting // seeds. // For Windows/NT platforms (WIN32), the code for drand48 has been // extracted from the GNU C Library 2.0.1 and adapted for the native // types. // Copy constructor and operator= are private for objects of this class. // ======================================================================= // G.Cosmo - Created: 5th September 1995 // - Minor corrections: 31st October 1996 // - Added methods for engine status: 19th November 1996 // - Added srand48(), seed48(), drand48() implementations // for Windows/NT: 6th March 1997 // - setSeed(), setSeeds() now have default dummy argument // set to zero: 11th July 1997 // E.Tcherniaev - Porting on KCC compiler: 2nd Feb 1998 // G.Cosmo - Private copy constructor and operator=: 26th Feb 1998 // J.Marraffino - Added stream operators and related constructor. // Added automatic seed selection from seed table and // engine counter: 16th Feb 1998 // E.Tcherniaev - Removed #ifdef for prototypes for drand48(), srand48() // and seed48(); // - More accurate code for drand48() on NT base on // a code extracted from GNU C Library 2.1.3: 8th Nov 2000 // E.Tcherniaev - prototypes for drand48(), srand48() and seed48() have // been moved to DRand48Engine.cc: 21 Feb 2002 // ======================================================================= #ifndef DRand48Engine_h #define DRand48Engine_h 1 #include "CLHEP/Random/RandomEngine.h" /** * @author * @ingroup random */ class DRand48Engine : public HepRandomEngine { public: DRand48Engine(HepStd::istream& is); DRand48Engine(); DRand48Engine(long seed); DRand48Engine(int rowIndex, int colIndex); virtual ~DRand48Engine(); // Constructors and destructor double flat(); // It returns a pseudo random number between 0 and 1, // according to the standard stdlib random function drand48() // but excluding the end points. void flatArray (const int size, double* vect); // Fills the array "vect" of specified size with flat random values. void setSeed(long seed, int dum=0); // Sets the state of the algorithm according to seed. void setSeeds(const long * seeds, int dum=0); // Sets the state of the algorithm according to the zero terminated // array of seeds. Only the first seed is used. void saveStatus( const char filename[] = "DRand48.conf" ) const; // Saves on file DRand48.conf the current engine status. void restoreStatus( const char filename[] = "DRand48.conf" ); // Reads from file DRand48.conf the last saved engine status // and restores it. void showStatus() const; // Dumps the engine status on the screen. friend HepStd::ostream& operator<< (HepStd::ostream& os, const DRand48Engine& e); friend HepStd::istream& operator>> (HepStd::istream& is, DRand48Engine& e); private: static int numEngines; static int maxIndex; DRand48Engine(const DRand48Engine &p); DRand48Engine & operator = (const DRand48Engine &p); // Private copy constructor and assignment operator. }; #endif