|
Gaudi Framework, version v23r3 |
| Home | Generated: Thu Jun 28 2012 |
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.
: 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.
{
return new GaussianTail(m_cut, m_sigma);
}
| double Rndm::GaussianTail::cut | ( | ) | const [inline] |
Access cut value of the distribution.
Definition at line 362 of file RndmGenerators.h.
{ return m_cut; }
| double Rndm::GaussianTail::sigma | ( | ) | const [inline] |
Access sigma of the distribution.
Definition at line 364 of file RndmGenerators.h.
{ return m_sigma; }
| static const InterfaceID& Rndm::GaussianTail::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 366 of file RndmGenerators.h.
{ 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.