RndmGenSvc.h
Go to the documentation of this file.
1 //====================================================================
2 // Random Generator service definition
3 //--------------------------------------------------------------------
4 //
5 // Package : Gaudi/RndmGen ( The LHCb Offline System)
6 // Author : M.Frank
7 //====================================================================
8 #ifndef GAUDI_RANDOMGENSVC_RNDMGENSVC_H
9 #define GAUDI_RANDOMGENSVC_RNDMGENSVC_H 1
10 
11 // STL include files
12 #include <vector>
13 
14 // Framework include files
15 #include "GaudiKernel/Service.h"
16 #include "GaudiKernel/ISerialize.h"
17 #include "GaudiKernel/IRndmGen.h"
18 #include "GaudiKernel/IRndmEngine.h"
19 #include "GaudiKernel/IRndmGenSvc.h"
20 
21 // Forward declarations
22 class IRndmGenFactory;
23 class IMessageSvc;
24 
49 class RndmGenSvc : public extends3<Service, IRndmGenSvc, IRndmEngine, ISerialize> {
50 private:
56  std::string m_engineName;
57 public:
59  RndmGenSvc(const std::string& name, ISvcLocator* svc);
61  ~RndmGenSvc() override = default;
62 public:
64  StatusCode initialize() override;
66  StatusCode finalize() override;
68  StreamBuffer& serialize(StreamBuffer& str) override;
71  StreamBuffer& serialize(StreamBuffer& str) const override;
73  IRndmEngine* engine() override;
75  StatusCode generator(const IRndmGen::Param& par, IRndmGen*& refpGen) override;
77  double rndm() const override;
84  StatusCode rndmArray( std::vector<double>& array, long howmany, long start = 0) const override;
86  StatusCode setSeeds(const std::vector<long>& seeds) override;
88  StatusCode seeds(std::vector<long>& seeds) const override;
89 };
90 
91 #endif // GAUDI_RANDOMGENSVC_RNDMGENSVC_H
RndmGenSvc(const std::string &name, ISvcLocator *svc)
Standard Service constructor.
Definition: RndmGenSvc.cpp:36
StreamBuffer & serialize(StreamBuffer &str) override
IRndmGenSvc interface implementation.
Definition: RndmGenSvc.cpp:90
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
StatusCode initialize() override
Service override: initialization.
Definition: RndmGenSvc.cpp:43
StatusCode finalize() override
Service override: finalization.
Definition: RndmGenSvc.cpp:78
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.h:41
Definition of a interface for a generic random number generators.
Definition: IRndmGen.h:35
std::string m_engineName
Engine name.
Definition: RndmGenSvc.h:56
SmartIF< IRndmEngine > m_engine
Random number engine.
Definition: RndmGenSvc.h:52
~RndmGenSvc() override=default
Standard Service destructor.
Random Generator service definition.
Definition: RndmGenSvc.h:49
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
StatusCode seeds(std::vector< long > &seeds) const override
Allow to get seeds.
Definition: RndmGenSvc.cpp:145
StatusCode generator(const IRndmGen::Param &par, IRndmGen *&refpGen) override
Retrieve a valid generator from the service.
Definition: RndmGenSvc.cpp:111
The IMessage is the interface implemented by the message service.
Definition: IMessageSvc.h:57
StatusCode rndmArray(std::vector< double > &array, long howmany, long start=0) const override
Multiple shots returning vector with flat random numbers.
Definition: RndmGenSvc.cpp:133
double rndm() const override
Single shot returning single random number.
Definition: RndmGenSvc.cpp:123
struct GAUDI_API array
Parametrisation class for redirection array - like implementation.
StatusCode setSeeds(const std::vector< long > &seeds) override
Allow to set new seeds.
Definition: RndmGenSvc.cpp:139
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
Definition of a interface for a generic random number generator giving randomly distributed numbers i...
Definition: IRndmEngine.h:19
IRndmEngine * engine() override
Retrieve engine.
Definition: RndmGenSvc.cpp:106
SmartIF< ISerialize > m_serialize
Serialization interface of random number engine.
Definition: RndmGenSvc.h:54
tuple start
Definition: IOTest.py:88