|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
00001 // $Header: /tmp/svngaudi/tmp.jEpFh25751/Gaudi/GaudiKernel/GaudiKernel/IRndmEngine.h,v 1.2 2001/01/19 14:22:55 mato Exp $ 00002 #ifndef GAUDIKERNEL_IRNDMENGINE_H 00003 #define GAUDIKERNEL_IRNDMENGINE_H 00004 00005 // STL include files 00006 #include <vector> 00007 00008 // Framework include files 00009 #include "GaudiKernel/IInterface.h" 00010 00020 class GAUDI_API IRndmEngine: virtual public IInterface { 00021 public: 00023 DeclareInterfaceID(IRndmEngine,2,0); 00025 virtual double rndm() const = 0; 00032 virtual StatusCode rndmArray( std::vector<double>& array, long howmany, long start = 0) const = 0; 00034 virtual StatusCode setSeeds(const std::vector<long>& seeds) = 0; 00036 virtual StatusCode seeds(std::vector<long>& seeds) const = 0; 00037 }; 00038 00039 #endif // GAUDI_INTERFACES_IRNDMENGINE_H