All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RndmEngine.cpp
Go to the documentation of this file.
1 //====================================================================
2 // Random Engine 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_RndmEngine_CPP
16 
17 // STL include files
18 #include <cfloat>
19 
20 // Framework include files
26 #include "GaudiKernel/DataObject.h"
27 #include "GaudiKernel/MsgStream.h"
28 #include "RndmEngine.h"
29 
32 : base_class(name, loc)
33 {
34 }
35 
38 }
39 
43  if ( status.isSuccess() ) {
44  status = setProperties();
45  if ( status.isSuccess() ) {
46  m_pIncidentSvc = serviceLocator()->service("IncidentSvc");
47  if (!m_pIncidentSvc) {
48  status = StatusCode::FAILURE;
49  }
50  }
51  }
52  return status;
53 }
54 
57  m_pIncidentSvc = 0; // release
58  return Service::finalize();
59 }
60 
64  return str;
65 }
66 
69  return str;
70 }
71 
73 double RndmEngine::rndm() const {
74  return DBL_MAX;
75 }
76 
78 void RndmEngine::handle (const Incident& /* inc */ ) {
79 }
80 
88  long cnt = start;
89  array.resize(start+howmany);
90  for ( long i = start, num = start+howmany; i < num; i++ ) {
91  array[cnt++] = rndm();
92  }
93  return StatusCode::SUCCESS;
94 }
95 
StatusCode initialize() override
Definition: Service.cpp:64
StreamBuffer & serialize(StreamBuffer &str) override
Input serialization from stream buffer.
Definition: RndmEngine.cpp:63
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
RndmEngine(const std::string &name, ISvcLocator *loc)
Standard Constructor.
Definition: RndmEngine.cpp:31
StatusCode finalize() override
Definition: Service.cpp:174
StatusCode start() override
Definition: Service.cpp:137
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.h:41
bool isSuccess() const
Test for a status code of SUCCESS.
Definition: StatusCode.h:74
StatusCode finalize() override
Service override: finalization.
Definition: RndmEngine.cpp:56
T resize(T...args)
STL class.
StatusCode service(const Gaudi::Utils::TypeNameString &name, T *&svc, bool createIf=true)
Templated method to access a service by name.
Definition: ISvcLocator.h:78
SmartIF< IIncidentSvc > m_pIncidentSvc
Reference to the incident service.
Definition: RndmEngine.h:53
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
StatusCode initialize() override
Service override: initialization.
Definition: RndmEngine.cpp:41
void handle(const Incident &inc) override
Inform that a new incident has occurred.
Definition: RndmEngine.cpp:78
~RndmEngine() override
Standard Destructor.
Definition: RndmEngine.cpp:37
StatusCode setProperties()
Method for setting declared properties to the values specified for the job.
Definition: Service.cpp:295
struct GAUDI_API array
Parametrisation class for redirection array - like implementation.
StatusCode rndmArray(std::vector< double > &array, long howmany, long start=0) const override
Multiple shots returning vector with flat random numbers.
Definition: RndmEngine.cpp:87
double rndm() const override
Single shot returning single random number.
Definition: RndmEngine.cpp:73
Base class for all Incidents (computing events).
Definition: Incident.h:17
SmartIF< ISvcLocator > & serviceLocator() const override
Retrieve pointer to service locator.
Definition: Service.cpp:292