|
Gaudi Framework, version v21r9 |
| Home | Generated: 3 May 2010 |
#include <RndmGenerators.h>


Public Member Functions | |
| Poisson (double m) | |
| Standard Constructor. | |
| virtual | ~Poisson () |
| Standard Destructor. | |
| double | mean () const |
| Access mean value of the distribution. | |
| virtual IRndmGen::Param * | clone () const |
| Clone parameters. | |
Static Public Member Functions | |
| static const InterfaceID & | typeID () |
| Identifier for factory. | |
Protected Attributes | |
| double | m_mean |
| Mean value of the Poisson distribution. | |
Friends | |
| class | Generator< Poisson > |
Definition at line 219 of file RndmGenerators.h.
| Rndm::Poisson::Poisson | ( | double | m | ) | [inline] |
Standard Constructor.
Definition at line 226 of file RndmGenerators.h.
00226 : IRndmGen::Param(IID_IRndmPoisson), m_mean(m) { }
| virtual Rndm::Poisson::~Poisson | ( | ) | [inline, virtual] |
| double Rndm::Poisson::mean | ( | ) | const [inline] |
Access mean value of the distribution.
Definition at line 230 of file RndmGenerators.h.
00230 { return m_mean; }
| static const InterfaceID& Rndm::Poisson::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 232 of file RndmGenerators.h.
00232 { return IID_IRndmPoisson; }
| virtual IRndmGen::Param* Rndm::Poisson::clone | ( | ) | const [inline, virtual] |
Definition at line 220 of file RndmGenerators.h.
double Rndm::Poisson::m_mean [protected] |