|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
Parameters for the Binomial distributed random number generation. More...
#include <RndmGenerators.h>


Public Member Functions | |
| Binomial (long n, double p) | |
| Standard Constructor. | |
| virtual | ~Binomial () |
| Standard Destructor. | |
| long | nEvent () const |
| Access number of events. | |
| double | probability () const |
| Access number of events. | |
| virtual IRndmGen::Param * | clone () const |
| Clone parameters. | |
Static Public Member Functions | |
| static const InterfaceID & | typeID () |
| Identifier for factory. | |
Protected Attributes | |
| long | m_nEvent |
| Number of events the binomial destribution corresponds to. | |
| double | m_probability |
| And the probability for having success. | |
Parameters for the Binomial distributed random number generation.
The returned values are in fact integers
Definition at line 240 of file RndmGenerators.h.
| Rndm::Binomial::Binomial | ( | long | n, |
| double | p | ||
| ) | [inline] |
Standard Constructor.
Definition at line 248 of file RndmGenerators.h.
: IRndmGen::Param(IID_IRndmBinomial), m_nEvent(n), m_probability(p) { }
| virtual Rndm::Binomial::~Binomial | ( | ) | [inline, virtual] |
| virtual IRndmGen::Param* Rndm::Binomial::clone | ( | ) | const [inline, virtual] |
Clone parameters.
Implements IRndmGen::Param.
Definition at line 259 of file RndmGenerators.h.
{
return new Binomial(m_nEvent, m_probability);
}
| long Rndm::Binomial::nEvent | ( | ) | const [inline] |
| double Rndm::Binomial::probability | ( | ) | const [inline] |
| static const InterfaceID& Rndm::Binomial::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 257 of file RndmGenerators.h.
{ return IID_IRndmBinomial; }
long Rndm::Binomial::m_nEvent [protected] |
Number of events the binomial destribution corresponds to.
Definition at line 243 of file RndmGenerators.h.
double Rndm::Binomial::m_probability [protected] |
And the probability for having success.
Definition at line 245 of file RndmGenerators.h.