|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |
#include <RndmGenerators.h>


Definition at line 349 of file 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. | |
| 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] |
| 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; }
| 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::m_cut [protected] |
double Rndm::GaussianTail::m_sigma [protected] |