|
Gaudi Framework, version v21r7 |
| Home | Generated: 22 Jan 2010 |
#include <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 > |
Definition at line 191 of file RndmGenerators.h.
| Rndm::Gamma::Gamma | ( | double | k, | |
| double | l | |||
| ) | [inline] |
Standard Constructor.
Definition at line 200 of file RndmGenerators.h.
00201 : 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 207 of file RndmGenerators.h.
00207 { return m_lambda; }
| static const InterfaceID& Rndm::Gamma::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 209 of file RndmGenerators.h.
00209 { return IID_IRndmGamma; }
| virtual IRndmGen::Param* Rndm::Gamma::clone | ( | ) | const [inline, virtual] |
Definition at line 192 of file RndmGenerators.h.
double Rndm::Gamma::m_kValue [protected] |
double Rndm::Gamma::m_lambda [protected] |