The Gaudi Framework  v30r3 (a5ef0a68)
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...
 
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 163 of file RndmGenerators.h.

Constructor & Destructor Documentation

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

Standard Constructor.

Definition at line 173 of file RndmGenerators.h.

173 : IRndmGen::Param( IID_IRndmStudentT ), m_aValue( a ) {}
double m_aValue
StudentT distribution parameter.

Member Function Documentation

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

Access A parameter.

Definition at line 175 of file RndmGenerators.h.

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

Clone parameters.

Implements IRndmGen::Param.

Definition at line 179 of file RndmGenerators.h.

179 { 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 177 of file RndmGenerators.h.

177 { return IID_IRndmStudentT; }

Friends And Related Function Documentation

friend class Generator< StudentT >
friend

Definition at line 165 of file RndmGenerators.h.

Member Data Documentation

double Rndm::StudentT::m_aValue
protected

StudentT distribution parameter.

Definition at line 169 of file RndmGenerators.h.


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