![]() |
|
|
Generated: 8 Jan 2009 |
#include <RndmGenerators.h>


Definition at line 190 of file RndmGenerators.h.
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. | |
Static Public Member Functions | |
| static const InterfaceID & | typeID () |
| Identifier for factory. | |
Protected Attributes | |
| double | m_kValue |
| k Value | |
| double | m_lambda |
| Lambda parameter. | |
Friends | |
| class | Generator< Gamma > |
| 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] |
Access Lambda parameter.
Definition at line 206 of file RndmGenerators.h.
00206 { return m_lambda; }
| 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 | ( | void | ) | const [inline, virtual] |
Definition at line 191 of file RndmGenerators.h.
double Rndm::Gamma::m_kValue [protected] |
double Rndm::Gamma::m_lambda [protected] |