|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |
Parameters for the Gaussian tail number generation. More...
#include <RndmGenerators.h>


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. | |
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. | |
Parameters for the Gaussian tail number generation.
Definition at line 349 of file RndmGenerators.h.
| Rndm::GaussianTail::GaussianTail | ( | double | a, | |
| double | s | |||
| ) | [inline] |
Standard Constructor.
Definition at line 357 of file RndmGenerators.h.
00358 : IRndmGen::Param(IID_IRndmGaussianTail), m_cut(a), m_sigma(s) { }
| virtual Rndm::GaussianTail::~GaussianTail | ( | ) | [inline, virtual] |
| virtual IRndmGen::Param* Rndm::GaussianTail::clone | ( | ) | const [inline, virtual] |
Clone parameters.
Implements IRndmGen::Param.
Definition at line 368 of file RndmGenerators.h.
00368 { 00369 return new GaussianTail(m_cut, m_sigma); 00370 }
| double Rndm::GaussianTail::cut | ( | ) | const [inline] |
Access cut value of the distribution.
Definition at line 362 of file RndmGenerators.h.
00362 { return m_cut; }
| double Rndm::GaussianTail::sigma | ( | ) | const [inline] |
Access sigma of the distribution.
Definition at line 364 of file RndmGenerators.h.
00364 { return m_sigma; }
| static const InterfaceID& Rndm::GaussianTail::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 366 of file RndmGenerators.h.
00366 { return IID_IRndmGaussianTail; }
double Rndm::GaussianTail::m_cut [protected] |
Cut on the Gaussian tail distribution.
Definition at line 352 of file RndmGenerators.h.
double Rndm::GaussianTail::m_sigma [protected] |
Sigma of the Gauss ditribution.
Definition at line 354 of file RndmGenerators.h.