3// -----------------------------------------------------------------------
6// inlined functions implementation file
7// -----------------------------------------------------------------------
8// This file is part of Geant4 (simulation toolkit for HEP).
10// =======================================================================
11// Gabriele Cosmo - Created: 5th September 1995
12// - Added methods for engine status: 19th November 1996
13// - operator()() is now virtual: 28th July 1997
14// - Simplified initialisation of static generator: 5th Jan 1999
15// =======================================================================
19inline double HepRandom::flat(HepRandomEngine* theNewEngine)
21 return theNewEngine->flat();
24inline void HepRandom::flatArray(HepRandomEngine* theNewEngine,
25 const int size, double* vect)
27 theNewEngine->flatArray(size,vect);