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