The Gaudi Framework  v29r0 (ff2e7097)
Rndm::BreitWignerCutOff Class Reference

Parameters for the BreitWigner distributed random number generation with cut off;. More...

#include <GaudiKernel/RndmGenerators.h>

Inheritance diagram for Rndm::BreitWignerCutOff:
Collaboration diagram for Rndm::BreitWignerCutOff:

Public Member Functions

 BreitWignerCutOff (double m, double g, double c)
 Standard Constructor. More...
 
 ~BreitWignerCutOff () override=default
 Standard Destructor. More...
 
double mean () const
 Access mean value of the distribution. More...
 
double gamma () const
 Access width of the distribution. More...
 
double cutOff () const
 Access width of the distribution. More...
 
BreitWignerCutOffclone () const override
 Clone parameters. More...
 
- Public Member Functions inherited from IRndmGen::Param
 Param (const InterfaceID &type=IID_IRndmFlat)
 Standard constructor. More...
 
virtual ~Param ()=default
 Standard Destructor. More...
 
virtual const InterfaceIDtype () const
 Parameter's type. More...
 

Static Public Member Functions

static const InterfaceIDtypeID ()
 Identifier for factory. More...
 

Protected Attributes

double m_mean
 Mean, Gamma and cut off parameter of the Breit-Wigner distribution. More...
 
double m_gamma
 
double m_cut
 
- Protected Attributes inherited from IRndmGen::Param
const InterfaceID m_type
 Type of the generator. More...
 

Friends

class Generator< BreitWignerCutOff >
 

Detailed Description

Parameters for the BreitWigner distributed random number generation with cut off;.

Definition at line 145 of file RndmGenerators.h.

Constructor & Destructor Documentation

Rndm::BreitWignerCutOff::BreitWignerCutOff ( double  m,
double  g,
double  c 
)
inline

Standard Constructor.

Definition at line 155 of file RndmGenerators.h.

156  : IRndmGen::Param( IID_IRndmBreitWignerCutOff ), m_mean( m ), m_gamma( g ), m_cut( c )
157  {
158  }
double m_mean
Mean, Gamma and cut off parameter of the Breit-Wigner distribution.
constexpr double m
Definition: SystemOfUnits.h:94
dictionary g
Definition: gaudirun.py:439
Rndm::BreitWignerCutOff::~BreitWignerCutOff ( )
overridedefault

Standard Destructor.

Member Function Documentation

BreitWignerCutOff* Rndm::BreitWignerCutOff::clone ( ) const
inlineoverridevirtual

Clone parameters.

Implements IRndmGen::Param.

Definition at line 170 of file RndmGenerators.h.

170 { return new BreitWignerCutOff( m_mean, m_gamma, m_cut ); }
double m_mean
Mean, Gamma and cut off parameter of the Breit-Wigner distribution.
BreitWignerCutOff(double m, double g, double c)
Standard Constructor.
double Rndm::BreitWignerCutOff::cutOff ( ) const
inline

Access width of the distribution.

Definition at line 166 of file RndmGenerators.h.

166 { return m_cut; }
double Rndm::BreitWignerCutOff::gamma ( ) const
inline

Access width of the distribution.

Definition at line 164 of file RndmGenerators.h.

164 { return m_gamma; }
double Rndm::BreitWignerCutOff::mean ( ) const
inline

Access mean value of the distribution.

Definition at line 162 of file RndmGenerators.h.

162 { return m_mean; }
double m_mean
Mean, Gamma and cut off parameter of the Breit-Wigner distribution.
static const InterfaceID& Rndm::BreitWignerCutOff::typeID ( )
inlinestatic

Identifier for factory.

Definition at line 168 of file RndmGenerators.h.

168 { return IID_IRndmBreitWignerCutOff; }

Friends And Related Function Documentation

friend class Generator< BreitWignerCutOff >
friend

Definition at line 147 of file RndmGenerators.h.

Member Data Documentation

double Rndm::BreitWignerCutOff::m_cut
protected

Definition at line 151 of file RndmGenerators.h.

double Rndm::BreitWignerCutOff::m_gamma
protected

Definition at line 151 of file RndmGenerators.h.

double Rndm::BreitWignerCutOff::m_mean
protected

Mean, Gamma and cut off parameter of the Breit-Wigner distribution.

Definition at line 151 of file RndmGenerators.h.


The documentation for this class was generated from the following file: