RndmGenSvc.cpp
Go to the documentation of this file.
1 //====================================================================
2 // Random Generator service implementation
3 //--------------------------------------------------------------------
4 //
5 // Package : Gaudi/RndmGen ( The LHCb Offline System)
6 // Author : M.Frank
7 // History :
8 // +---------+----------------------------------------------+---------
9 // | Date | Comment | Who
10 // +---------+----------------------------------------------+---------
11 // | 29/10/99| Initial version | MF
12 // +---------+----------------------------------------------+---------
13 //
14 //====================================================================
15 #define GAUDI_RANDOMGENSVC_RNDMGENSVC_CPP
16 
17 // STL include files
18 #include <cfloat>
19 
20 // Framework include files
21 #include "GaudiKernel/SmartIF.h"
25 
26 
27 #include "RndmGen.h"
28 #include "RndmGenSvc.h"
29 
30 // Instantiation of a static factory class used by clients to create
31 // instances of this service
33 
34 RndmGenSvc::RndmGenSvc(const std::string& nam, ISvcLocator* svc)
36 : base_class(nam, svc)
37 {
38  declareProperty("Engine", m_engineName = "HepRndm::Engine<CLHEP::RanluxEngine>");
39 }
40 
44 
45  auto mgr = serviceLocator()->as<ISvcManager>();
46 
47  if ( status.isSuccess() ) {
48  status = setProperties();
49  if ( status.isSuccess() ) { // Check if the Engine service exists:
50  // FIXME: (MCl) why RndmGenSvc cannot create the engine service in a standard way?
51  const bool CREATE = false;
52  std::string machName = name()+".Engine";
53  auto engine = serviceLocator()->service<IRndmEngine>(machName, CREATE);
54  if ( !engine && mgr ) {
56  engine = mgr->createService(TypeNameString(machName, m_engineName));
57  }
58  if ( engine ) {
59  auto serial = engine.as<ISerialize>();
60  auto service = engine.as<IService>();
61  if ( serial && service ) {
62  status = service->sysInitialize();
63  if ( status.isSuccess() ) {
64  m_engine = engine;
65  m_serialize = serial;
66  info() << "Using Random engine:" << m_engineName << endmsg;
67  }
68  }
69  }
70  }
71  }
72  return status;
73 }
74 
77  StatusCode status = Service::finalize();
79  if ( m_engine ) {
81  m_engine.reset();
82  }
83  return status;
84 }
85 
89  if ( m_serialize ) return m_serialize->serialize(str);
90  error() << "Cannot input serialize Generator settings!" << endmsg;
91  return str;
92 }
93 
96  if ( m_serialize ) return m_serialize->serialize(str);
97  error() << "Cannot output serialize Generator settings!" << endmsg;
98  return str;
99 }
100 
103  return m_engine.get();
104 }
105 
108  auto pGen = SmartIF<IRndmGen>( ObjFactory::create(par.type(),m_engine.get()) );
109  if (!pGen) {
110  refpGen = nullptr;
111  return StatusCode::FAILURE;
112  }
113  refpGen = pGen.get();
114  refpGen->addRef(); // insure the caller gets something with a refCount of (at least) one back...
115  return refpGen->initialize(par);
116 }
117 
118 // Single shot returning single random number
119 double RndmGenSvc::rndm() const {
120  return m_engine ? m_engine->rndm() : -1;
121 }
122 
123 /* Multiple shots returning vector with flat random numbers.
124  @param array Array containing random numbers
125  @param howmany fill 'howmany' random numbers into array
126  @param start ... starting at position start
127  @return StatusCode indicating failure or success.
128 */
130  return m_engine ? m_engine->rndmArray(array, howmany, start)
132 }
133 
134 // Allow to set new seeds
136  return m_engine ? m_engine->setSeeds(seeds)
138 }
139 
140 // Allow to get the seeds
142  return m_engine ? m_engine->seeds(seeds)
144 }
145 
virtual StatusCode initialize(const IRndmGen::Param &par)=0
Initialize the generator.
StatusCode initialize() override
Definition: Service.cpp:68
SmartIF< ISvcLocator > & serviceLocator() const override
Retrieve pointer to service locator.
Definition: Service.cpp:324
virtual StatusCode rndmArray(std::vector< double > &array, long howmany, long start=0) const =0
Multiple shots returning vector with flat random numbers.
StreamBuffer & serialize(StreamBuffer &str) override
IRndmGenSvc interface implementation.
Definition: RndmGenSvc.cpp:88
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:42
StatusCode finalize() override
Definition: Service.cpp:193
MsgStream & info() const
shortcut for the method msgStream(MSG::INFO)
StatusCode finalize() override
Service override: finalization.
Definition: RndmGenSvc.cpp:76
The ISvcManager is the interface implemented by the Service Factory in the Application Manager to sup...
Definition: ISvcManager.h:28
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.h:41
virtual const InterfaceID & type() const
Parameter's type.
Definition: IRndmGen.h:50
bool isSuccess() const
Test for a status code of SUCCESS.
Definition: StatusCode.h:76
Definition of a interface for a generic random number generators.
Definition: IRndmGen.h:35
std::string m_engineName
Engine name.
Definition: RndmGenSvc.h:59
SmartIF< IRndmEngine > m_engine
Random number engine.
Definition: RndmGenSvc.h:55
STL namespace.
SmartIF< IFace > as()
Definition: ISvcLocator.h:106
#define DECLARE_COMPONENT(type)
Definition: PluginService.h:36
STL class.
Random Generator service definition.
Definition: RndmGenSvc.h:49
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:76
StatusCode service(const Gaudi::Utils::TypeNameString &name, T *&svc, bool createIf=true)
Templated method to access a service by name.
Definition: ISvcLocator.h:78
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:319
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
SmartIF< IFace > as() const
return a new SmartIF instance to another interface
Definition: SmartIF.h:110
Helper class to parse a string of format "type/name".
Definition: TypeNameString.h:9
General service interface definition.
Definition: IService.h:18
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
virtual double rndm() const =0
Single shot returning single random number.
virtual StreamBuffer & serialize(StreamBuffer &str)=0
Input serialization from stream buffer.
StatusCode seeds(std::vector< long > &seeds) const override
Allow to get seeds.
Definition: RndmGenSvc.cpp:141
StatusCode generator(const IRndmGen::Param &par, IRndmGen *&refpGen) override
Retrieve a valid generator from the service.
Definition: RndmGenSvc.cpp:107
virtual StatusCode setSeeds(const std::vector< long > &seeds)=0
Allow to set new seeds.
StatusCode rndmArray(std::vector< double > &array, long howmany, long start=0) const override
Multiple shots returning vector with flat random numbers.
Definition: RndmGenSvc.cpp:129
StatusCode setProperties()
Method for setting declared properties to the values specified for the job.
Definition: Service.cpp:363
double rndm() const override
Single shot returning single random number.
Definition: RndmGenSvc.cpp:119
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:135
virtual unsigned long addRef()=0
Increment the reference count of Interface instance.
StatusCode service(const std::string &name, const T *&psvc, bool createIf=true) const
Access a service by name, creating it if it doesn't already exist.
Definition: Service.h:144
Definition of a interface for a generic random number generator giving randomly distributed numbers i...
Definition: IRndmEngine.h:19
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition: SmartIF.h:88
IRndmEngine * engine() override
Retrieve engine.
Definition: RndmGenSvc.cpp:102
SmartIF< ISerialize > m_serialize
Serialization interface of random number engine.
Definition: RndmGenSvc.h:57
void ignore() const
Definition: StatusCode.h:108
Object serialization interface definition.
Definition: ISerialize.h:17
virtual StatusCode seeds(std::vector< long > &seeds) const =0
Allow to retrieve seeds.
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:244
tuple start
Definition: IOTest.py:88