#include <RndmGenerators.h>
Inheritance diagram for Rndm::Gamma:
Public Member Functions | |
| Gamma (double k, double l) | |
| Standard Constructor. | |
| virtual | ~Gamma () |
| Standard Destructor. | |
| double | kValue () const |
| Access K parameter. | |
| double | lambda () const |
| Access Lambda parameter. | |
| virtual IRndmGen::Param * | clone () const |
| Clone parameters. | |
| virtual const InterfaceID & | type () const |
| Parameter's type. | |
Static Public Member Functions | |
| static const InterfaceID & | typeID () |
| Identifier for factory. | |
Protected Attributes | |
| double | m_kValue |
| k Value | |
| double | m_lambda |
| Lambda parameter. | |
| const InterfaceID | m_type |
| Type of the generator. | |
Friends | |
| class | Generator< Gamma > |
Definition at line 190 of file RndmGenerators.h.
| Rndm::Gamma::Gamma | ( | double | k, | |
| double | l | |||
| ) | [inline] |
Standard Constructor.
Definition at line 199 of file RndmGenerators.h.
00200 : IRndmGen::Param(IID_IRndmGamma), m_kValue(k), m_lambda(l) { }
| virtual Rndm::Gamma::~Gamma | ( | ) | [inline, virtual] |
| double Rndm::Gamma::kValue | ( | ) | const [inline] |
| double Rndm::Gamma::lambda | ( | ) | const [inline] |
| static const InterfaceID& Rndm::Gamma::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 208 of file RndmGenerators.h.
00208 { return IID_IRndmGamma; }
| virtual IRndmGen::Param* Rndm::Gamma::clone | ( | ) | const [inline, virtual] |
| virtual const InterfaceID& IRndmGen::Param::type | ( | ) | const [inline, virtual, inherited] |
friend class Generator< Gamma > [friend] |
Definition at line 191 of file RndmGenerators.h.
double Rndm::Gamma::m_kValue [protected] |
double Rndm::Gamma::m_lambda [protected] |
const InterfaceID IRndmGen::Param::m_type [protected, inherited] |
1.4.7