The Gaudi Framework  master (594c33fa)
RndmGen Class Reference

Random Generator definition. More...

#include </builds/gaudi/Gaudi/GaudiSvc/src/RndmGenSvc/RndmGen.h>

Inheritance diagram for RndmGen:
Collaboration diagram for RndmGen:

Public Member Functions

StatusCode initialize (const IRndmGen::Param &par) override
 IRndmGen implementation
More...
 
StatusCode finalize () override
 Finalize the generator. More...
 
const InterfaceIDtype () const override
 Random number generator type. More...
 
long ID () const override
 Random number generator ID. More...
 
const IRndmGen::Paramparameters () const override
 Access to random number generator parameters. More...
 
StatusCode shootArray (std::vector< double > &array, long howmany, long start) const override
 Multiple shots returning vector with random number according to specified distribution. More...
 
- Public Member Functions inherited from implements< IRndmGen >
void * i_cast (const InterfaceID &tid) const override
 Implementation of IInterface::i_cast. More...
 
StatusCode queryInterface (const InterfaceID &ti, void **pp) override
 Implementation of IInterface::queryInterface. More...
 
std::vector< std::stringgetInterfaceNames () const override
 Implementation of IInterface::getInterfaceNames. More...
 
 implements ()=default
 Default constructor. More...
 
 implements (const implements &)
 Copy constructor (zero the reference count) More...
 
implementsoperator= (const implements &)
 Assignment operator (do not touch the reference count). More...
 
unsigned long addRef () override
 Reference Interface instance
More...
 
unsigned long release () override
 Release Interface instance
More...
 
unsigned long refCount () const override
 Current reference count
More...
 

Protected Member Functions

 RndmGen (IInterface *engine)
 Standard Constructor. More...
 

Protected Attributes

std::unique_ptr< IRndmGen::Paramm_params
 Generation parameters. More...
 
SmartIF< IRndmEnginem_engine
 Hosting service: Access must always be possible. More...
 
- Protected Attributes inherited from implements< IRndmGen >
std::atomic_ulong m_refCount
 Reference counter
More...
 

Additional Inherited Members

- Public Types inherited from implements< IRndmGen >
using base_class = implements< Interfaces... >
 Typedef to this class. More...
 
using extend_interfaces_base = extend_interfaces< Interfaces... >
 Typedef to the base of this class. More...
 
using iids = typename extend_interfaces_base::ext_iids
 
- Public Types inherited from extend_interfaces< Interfaces... >
using ext_iids = typename Gaudi::interface_list_cat< typename Interfaces::ext_iids... >::type
 take union of the ext_iids of all Interfaces... More...
 

Detailed Description

Random Generator definition.

Description: Definition of a interface for a generic random number generators.

Dependencies:

  • Generic Service interface: Gaudi/Interfaces/IInterface.h

History :

+---------+----------------------------------------------+--------+
|    Date |                 Comment                      | Who    |
+---------+----------------------------------------------+--------+
| 21/11/99| Initial version.                             | MF     |
+---------+----------------------------------------------+--------+

Author: M.Frank Version: 1.0

Definition at line 51 of file RndmGen.h.

Constructor & Destructor Documentation

◆ RndmGen()

RndmGen::RndmGen ( IInterface engine)
protected

Standard Constructor.

Definition at line 33 of file RndmGen.cpp.

33 : m_engine{ engine } {}

Member Function Documentation

◆ finalize()

StatusCode RndmGen::finalize ( )
override

Finalize the generator.

Definition at line 41 of file RndmGen.cpp.

41 { return StatusCode::SUCCESS; }

◆ ID()

long RndmGen::ID ( ) const
inlineoverride

Random number generator ID.

Definition at line 71 of file RndmGen.h.

71 { return long( this ); }

◆ initialize()

StatusCode RndmGen::initialize ( const IRndmGen::Param par)
override

IRndmGen implementation

Initialize the generator.

Initialize the generator

Definition at line 36 of file RndmGen.cpp.

36  {
37  m_params.reset( par.clone() );
39 }

◆ parameters()

const IRndmGen::Param* RndmGen::parameters ( ) const
inlineoverride

Access to random number generator parameters.

Definition at line 73 of file RndmGen.h.

73 { return m_params.get(); }

◆ shootArray()

StatusCode RndmGen::shootArray ( std::vector< double > &  array,
long  howmany,
long  start 
) const
override

Multiple shots returning vector with random number according to specified distribution.

Parameters
arrayArray containing random numbers
howmanyfill 'howmany' random numbers into array
start... starting at position start

Definition at line 44 of file RndmGen.cpp.

44  {
45  if ( !m_engine ) return StatusCode::FAILURE;
46  array.resize( start + howmany );
47  std::generate_n( std::next( std::begin( array ), start ), howmany, [&]() { return this->shoot(); } );
48  return StatusCode::SUCCESS;
49 }

◆ type()

const InterfaceID& RndmGen::type ( ) const
inlineoverride

Random number generator type.

Definition at line 69 of file RndmGen.h.

69 { return ( m_params != 0 ) ? m_params->type() : IID_IRndmFlat; }

Member Data Documentation

◆ m_engine

SmartIF<IRndmEngine> RndmGen::m_engine
protected

Hosting service: Access must always be possible.

Definition at line 57 of file RndmGen.h.

◆ m_params

std::unique_ptr<IRndmGen::Param> RndmGen::m_params
protected

Generation parameters.

Definition at line 55 of file RndmGen.h.


The documentation for this class was generated from the following files:
std::generate_n
T generate_n(T... args)
std::unique_ptr::get
T get(T... args)
IOTest.start
start
Definition: IOTest.py:110
std::unique_ptr::reset
T reset(T... args)
compareOutputFiles.par
par
Definition: compareOutputFiles.py:477
RndmGen::m_engine
SmartIF< IRndmEngine > m_engine
Hosting service: Access must always be possible.
Definition: RndmGen.h:57
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:100
Containers::array
struct GAUDI_API array
Parametrisation class for redirection array - like implementation.
Definition: KeyedObjectManager.h:37
std::begin
T begin(T... args)
RndmGen::m_params
std::unique_ptr< IRndmGen::Param > m_params
Generation parameters.
Definition: RndmGen.h:55
StatusCode::FAILURE
constexpr static const auto FAILURE
Definition: StatusCode.h:101
IRndmGen::Param::type
virtual const InterfaceID & type() const
Parameter's type.
Definition: IRndmGen.h:60
std::next
T next(T... args)