|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
Definition of a interface for a generic random number generators. More...
#include <GaudiKernel/IRndmGen.h>


Classes | |
| class | Param |
Public Member Functions | |
| DeclareInterfaceID (IRndmGen, 2, 0) | |
| InterfaceID. | |
| virtual StatusCode | initialize (const IRndmGen::Param &par)=0 |
| Initialize the generator. | |
| virtual StatusCode | finalize ()=0 |
| Initialize the generator. | |
| virtual const InterfaceID & | type () const =0 |
| Random number generator type. | |
| virtual long | ID () const =0 |
| Random generator ID. | |
| virtual const IRndmGen::Param * | parameters () const =0 |
| Access to random number generator parameters. | |
| virtual double | shoot () const =0 |
| Single shot returning single random number according to specified distribution. | |
| virtual StatusCode | shootArray (std::vector< double > &array, long howmany, long start=0) const =0 |
| Multiple shots returning vector with random number according to specified distribution. | |
| virtual | ~IRndmGen () |
| Virtual destructor. | |
Definition of a interface for a generic random number generators.
Definition at line 36 of file IRndmGen.h.
| virtual IRndmGen::~IRndmGen | ( | ) | [inline, virtual] |
| IRndmGen::DeclareInterfaceID | ( | IRndmGen | , |
| 2 | , | ||
| 0 | |||
| ) |
| virtual StatusCode IRndmGen::finalize | ( | ) | [pure virtual] |
Initialize the generator.
Implemented in HepRndm::Generator< Rndm::DefinedPdf >, and RndmGen.
| virtual StatusCode IRndmGen::initialize | ( | const IRndmGen::Param & | par ) | [pure virtual] |
Initialize the generator.
Implemented in HepRndm::Generator< TYPE >, HepRndm::Generator< Rndm::DefinedPdf >, and RndmGen.
| virtual const IRndmGen::Param* IRndmGen::parameters | ( | ) | const [pure virtual] |
Access to random number generator parameters.
Implemented in RndmGen.
| virtual double IRndmGen::shoot | ( | ) | const [pure virtual] |
Single shot returning single random number according to specified distribution.
Implemented in HepRndm::Generator< TYPE >, HepRndm::Generator< Rndm::DefinedPdf >, RndmGen, 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 >.
| virtual StatusCode IRndmGen::shootArray | ( | std::vector< double > & | array, |
| long | howmany, | ||
| long | start = 0 |
||
| ) | const [pure 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 |
| Statuscode | indicating success or failure |
Implemented in RndmGen.
| virtual const InterfaceID& IRndmGen::type | ( | ) | const [pure virtual] |
Random number generator type.
Implemented in RndmGen.