|
Gaudi Framework, version v22r4 |
| Home | Generated: Fri Sep 2 2011 |
Random Generator definition. More...
#include <RndmGen.h>


Public Member Functions | |
| virtual StatusCode | initialize (const IRndmGen::Param &par) |
| IRndmGen implementation. | |
| virtual StatusCode | finalize () |
| Initialize the generator. | |
| virtual const InterfaceID & | type () const |
| Random number generator type. | |
| virtual long | ID () const |
| Random number generator ID. | |
| virtual const IRndmGen::Param * | parameters () const |
| Access to random number generator parameters. | |
| virtual double | shoot () const |
| Single shot returning single random number according to specified distribution. | |
| virtual StatusCode | shootArray (std::vector< double > &array, long howmany, long start) const |
| Multiple shots returning vector with random number according to specified distribution. | |
Protected Member Functions | |
| RndmGen (IInterface *engine) | |
| Standard Constructor. | |
| virtual | ~RndmGen () |
| Standard Destructor. | |
Protected Attributes | |
| IRndmGen::Param * | m_params |
| Generation parameters. | |
| IRndmEngine * | m_engine |
| Hosting service: Access must always be possible. | |
Random Generator definition.
Description: Definition of a interface for a generic random number generators.
Dependencies:
History :
+---------+----------------------------------------------+--------+
| Date | Comment | Who |
+---------+----------------------------------------------+--------+
| 21/11/99| Initial version. | MF |
+---------+----------------------------------------------+--------+
Author: M.Frank Version: 1.0
Definition at line 39 of file RndmGen.h.
| RndmGen::RndmGen | ( | IInterface * | engine ) | [protected] |
Standard Constructor.
Definition at line 22 of file RndmGen.cpp.
: m_params(0), m_engine(0) { if ( 0 != engine ) { engine->queryInterface(IRndmEngine::interfaceID(), pp_cast<void>(&m_engine)).ignore(); } }
| RndmGen::~RndmGen | ( | ) | [protected, virtual] |
| StatusCode RndmGen::finalize | ( | void | ) | [virtual] |
Initialize the generator.
Initialize the RndmGen.
Implements IRndmGen.
Reimplemented in HepRndm::Generator< Rndm::DefinedPdf >.
Definition at line 43 of file RndmGen.cpp.
{
return StatusCode::SUCCESS;
}
| virtual long RndmGen::ID | ( | ) | const [inline, virtual] |
| StatusCode RndmGen::initialize | ( | const IRndmGen::Param & | par ) | [virtual] |
IRndmGen implementation.
Initialize the generator.
Initialize the generator
Implements IRndmGen.
Reimplemented in HepRndm::Generator< TYPE >, and HepRndm::Generator< Rndm::DefinedPdf >.
Definition at line 37 of file RndmGen.cpp.
{
m_params = par.clone();
return (0==m_engine) ? StatusCode::FAILURE : StatusCode::SUCCESS;
}
| virtual const IRndmGen::Param* RndmGen::parameters | ( | ) | const [inline, virtual] |
| double RndmGen::shoot | ( | ) | const [virtual] |
Single shot returning single random number according to specified distribution.
Implements IRndmGen.
Reimplemented in HepRndm::Generator< TYPE >, HepRndm::Generator< Rndm::DefinedPdf >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, HepRndm::Generator< TYPE >, and HepRndm::Generator< TYPE >.
Definition at line 48 of file RndmGen.cpp.
{
return DBL_MAX;
}
| StatusCode RndmGen::shootArray | ( | std::vector< double > & | array, |
| long | howmany, | ||
| long | start | ||
| ) | const [virtual] |
Multiple shots returning vector with random number according to specified distribution.
| array | Array containing random numbers |
| howmany | fill 'howmany' random numbers into array |
| start | ... starting at position start |
Implements IRndmGen.
Definition at line 53 of file RndmGen.cpp.
| virtual const InterfaceID& RndmGen::type | ( | ) | const [inline, virtual] |
IRndmEngine* RndmGen::m_engine [protected] |
IRndmGen::Param* RndmGen::m_params [protected] |