![]() |
|
|
Generated: 24 Nov 2008 |
#include <RndmGenerators.h>


Definition at line 170 of file RndmGenerators.h.
Public Member Functions | |
| StudentT (double a) | |
| Standard Constructor. | |
| virtual | ~StudentT () |
| Standard Destructor. | |
| double | aValue () const |
| Access A parameter. | |
| virtual IRndmGen::Param * | clone () const |
| Clone parameters. | |
Static Public Member Functions | |
| static const InterfaceID & | typeID () |
| Identifier for factory. | |
Protected Attributes | |
| double | m_aValue |
| StudentT distribution parameter. | |
Friends | |
| class | Generator< StudentT > |
| Rndm::StudentT::StudentT | ( | double | a | ) | [inline] |
Standard Constructor.
Definition at line 177 of file RndmGenerators.h.
00177 : IRndmGen::Param(IID_IRndmStudentT), m_aValue(a) { }
| virtual Rndm::StudentT::~StudentT | ( | ) | [inline, virtual] |
| double Rndm::StudentT::aValue | ( | ) | const [inline] |
| static const InterfaceID& Rndm::StudentT::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 183 of file RndmGenerators.h.
00183 { return IID_IRndmStudentT; }
| virtual IRndmGen::Param* Rndm::StudentT::clone | ( | void | ) | const [inline, virtual] |
Definition at line 171 of file RndmGenerators.h.
double Rndm::StudentT::m_aValue [protected] |