#include <RndmGenerators.h>
Inheritance diagram for Rndm::GaussianTail:
Public Member Functions | |
| GaussianTail (double a, double s) | |
| Standard Constructor. | |
| virtual | ~GaussianTail () |
| Standard Destructor. | |
| double | cut () const |
| Access cut value of the distribution. | |
| double | sigma () const |
| Access sigma of the distribution. | |
| 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_cut |
| Cut on the Gaussian tail distribution. | |
| double | m_sigma |
| Sigma of the Gauss ditribution. | |
| const InterfaceID | m_type |
| Type of the generator. | |
Definition at line 348 of file RndmGenerators.h.
| Rndm::GaussianTail::GaussianTail | ( | double | a, | |
| double | s | |||
| ) | [inline] |
Standard Constructor.
Definition at line 356 of file RndmGenerators.h.
00357 : IRndmGen::Param(IID_IRndmGaussianTail), m_cut(a), m_sigma(s) { }
| virtual Rndm::GaussianTail::~GaussianTail | ( | ) | [inline, virtual] |
| double Rndm::GaussianTail::cut | ( | ) | const [inline] |
Access cut value of the distribution.
Definition at line 361 of file RndmGenerators.h.
00361 { return m_cut; }
| double Rndm::GaussianTail::sigma | ( | ) | const [inline] |
Access sigma of the distribution.
Definition at line 363 of file RndmGenerators.h.
00363 { return m_sigma; }
| static const InterfaceID& Rndm::GaussianTail::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 365 of file RndmGenerators.h.
00365 { return IID_IRndmGaussianTail; }
| virtual IRndmGen::Param* Rndm::GaussianTail::clone | ( | ) | const [inline, virtual] |
Clone parameters.
Implements IRndmGen::Param.
Definition at line 367 of file RndmGenerators.h.
00367 { 00368 return new GaussianTail(m_cut, m_sigma); 00369 }
| virtual const InterfaceID& IRndmGen::Param::type | ( | ) | const [inline, virtual, inherited] |
double Rndm::GaussianTail::m_cut [protected] |
double Rndm::GaussianTail::m_sigma [protected] |
const InterfaceID IRndmGen::Param::m_type [protected, inherited] |
1.4.7