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

Parameters for the StudentT distributed random number generation. More...

#include <GaudiKernel/RndmGenerators.h>

Inheritance diagram for Rndm::StudentT:
Collaboration diagram for Rndm::StudentT:

Public Member Functions

 StudentT (double a)
 Standard Constructor. More...
 
 ~StudentT () override=default
 Standard Destructor. More...
 
double aValue () const
 Access A parameter. More...
 
StudentTclone () 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_aValue
 StudentT distribution parameter. More...
 
- Protected Attributes inherited from IRndmGen::Param
const InterfaceID m_type
 Type of the generator. More...
 

Friends

class Generator< StudentT >
 

Detailed Description

Parameters for the StudentT distributed random number generation.

Definition at line 175 of file RndmGenerators.h.

Constructor & Destructor Documentation

Rndm::StudentT::StudentT ( double  a)
inline

Standard Constructor.

Definition at line 185 of file RndmGenerators.h.

185 : IRndmGen::Param( IID_IRndmStudentT ), m_aValue( a ) {}
double m_aValue
StudentT distribution parameter.
Rndm::StudentT::~StudentT ( )
overridedefault

Standard Destructor.

Member Function Documentation

double Rndm::StudentT::aValue ( ) const
inline

Access A parameter.

Definition at line 189 of file RndmGenerators.h.

189 { return m_aValue; }
double m_aValue
StudentT distribution parameter.
StudentT* Rndm::StudentT::clone ( ) const
inlineoverridevirtual

Clone parameters.

Implements IRndmGen::Param.

Definition at line 193 of file RndmGenerators.h.

193 { return new StudentT( m_aValue ); }
StudentT(double a)
Standard Constructor.
double m_aValue
StudentT distribution parameter.
static const InterfaceID& Rndm::StudentT::typeID ( )
inlinestatic

Identifier for factory.

Definition at line 191 of file RndmGenerators.h.

191 { return IID_IRndmStudentT; }

Friends And Related Function Documentation

friend class Generator< StudentT >
friend

Definition at line 177 of file RndmGenerators.h.

Member Data Documentation

double Rndm::StudentT::m_aValue
protected

StudentT distribution parameter.

Definition at line 181 of file RndmGenerators.h.


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