|
Gaudi Framework, version v23r1 |
| Home | Generated: Wed Feb 29 2012 |
Parameters for the Landau distributed random number generation. More...
#include <RndmGenerators.h>


Public Member Functions | |
| Landau (double m, double s) | |
| Standard Constructor. | |
| virtual | ~Landau () |
| Standard Destructor. | |
| double | mean () const |
| Access mean value of the distribution. | |
| double | sigma () const |
| Access width 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_mean |
| Mean and Gamma parameter of the Breit-Wigner distribution. | |
| double | m_sigma |
Friends | |
| class | Generator< Landau > |
Parameters for the Landau distributed random number generation.
Definition at line 115 of file RndmGenerators.h.
| Rndm::Landau::Landau | ( | double | m, |
| double | s | ||
| ) | [inline] |
Standard Constructor.
Definition at line 122 of file RndmGenerators.h.
: IRndmGen::Param(IID_IRndmLandau), m_mean(m), m_sigma(s) { }
| virtual Rndm::Landau::~Landau | ( | ) | [inline, virtual] |
| virtual IRndmGen::Param* Rndm::Landau::clone | ( | ) | const [inline, virtual] |
| double Rndm::Landau::mean | ( | ) | const [inline] |
Access mean value of the distribution.
Definition at line 127 of file RndmGenerators.h.
{ return m_mean; }
| double Rndm::Landau::sigma | ( | ) | const [inline] |
Access width of the distribution.
Definition at line 129 of file RndmGenerators.h.
{ return m_sigma; }
| static const InterfaceID& Rndm::Landau::typeID | ( | ) | [inline, static] |
Identifier for factory.
Definition at line 131 of file RndmGenerators.h.
{ return IID_IRndmLandau; }
friend class Generator< Landau > [friend] |
Definition at line 116 of file RndmGenerators.h.
double Rndm::Landau::m_mean [protected] |
Mean and Gamma parameter of the Breit-Wigner distribution.
Definition at line 119 of file RndmGenerators.h.
double Rndm::Landau::m_sigma [protected] |
Definition at line 119 of file RndmGenerators.h.