The Gaudi Framework  v29r0 (ff2e7097)
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 "RndmGen.h"
19 #include <algorithm>
20 #include <cfloat>
21 
23 RndmGen::RndmGen( IInterface* engine ) : m_engine{engine} {}
24 
27 {
28  m_params.reset( par.clone() );
30 }
31 
33 
36 {
37  if ( !m_engine ) return StatusCode::FAILURE;
38  array.resize( start + howmany );
39  std::generate_n( std::next( std::begin( array ), start ), howmany, [&]() { return this->shoot(); } );
40  return StatusCode::SUCCESS;
41 }
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:48
T next(T...args)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
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:35
Definition of the basic interface.
Definition: IInterface.h:277
StatusCode initialize(const IRndmGen::Param &par) override
IRndmGen implementation.
Definition: RndmGen.cpp:26
T generate_n(T...args)
start
Definition: IOTest.py:99
T reset(T...args)
StatusCode finalize() override
Finalize the generator.
Definition: RndmGen.cpp:32
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:46