All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RndmGen.cpp
Go to the documentation of this file.
1 //====================================================================
2 // Random RndmGen class implementation
3 //--------------------------------------------------------------------
4 //
5 // Package : Gaudi/RndmGen ( The LHCb Offline System)
6 // Author : M.Frank
7 // History :
8 // +---------+----------------------------------------------+--------+
9 // | Date | Comment | Who |
10 // +---------+----------------------------------------------+--------+
11 // | 21/11/99| Initial version. | MF |
12 // +---------+----------------------------------------------+--------+
13 //====================================================================
14 #define GAUDI_RANDOMGENSVC_RNDMGEN_CPP
15 
16 #include <cfloat>
17 #include <algorithm>
20 #include "RndmGen.h"
21 
24  : m_engine{ engine }
25 { }
26 
29  m_params.reset(par.clone());
31 }
32 
34  return StatusCode::SUCCESS;
35 }
36 
39  if ( !m_engine ) return StatusCode::FAILURE;
40  array.resize(start+howmany);
41  std::generate_n( std::next( std::begin(array), start ), howmany, [&](){ return this->shoot(); } );
42  return StatusCode::SUCCESS;
43 }
RndmGen(IInterface *engine)
Standard Constructor.
Definition: RndmGen.cpp:23
T resize(T...args)
virtual Param * clone() const =0
Clone parameters.
SmartIF< IRndmEngine > m_engine
Hosting service: Access must always be possible.
Definition: RndmGen.h:47
T next(T...args)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
StatusCode shootArray(std::vector< double > &array, long howmany, long start) const override
Multiple shots returning vector with random number according to specified distribution.
Definition: RndmGen.cpp:38
Definition of the basic interface.
Definition: IInterface.h:234
StatusCode initialize(const IRndmGen::Param &par) override
IRndmGen implementation.
Definition: RndmGen.cpp:28
T generate_n(T...args)
start
Definition: IOTest.py:88
T reset(T...args)
StatusCode finalize() override
Finalize the generator.
Definition: RndmGen.cpp:33
struct GAUDI_API array
Parametrisation class for redirection array - like implementation.
T begin(T...args)
std::unique_ptr< IRndmGen::Param > m_params
Generation parameters.
Definition: RndmGen.h:45