All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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...
 
virtual ~StudentT ()
 Standard Destructor. More...
 
double aValue () const
 Access A parameter. More...
 
virtual IRndmGen::Paramclone () const
 Clone parameters. More...
 
- Public Member Functions inherited from IRndmGen::Param
 Param (const InterfaceID &type=IID_IRndmFlat)
 Standard constructor. More...
 
virtual ~Param ()
 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 171 of file RndmGenerators.h.

Constructor & Destructor Documentation

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

Standard Constructor.

Definition at line 178 of file RndmGenerators.h.

178 : IRndmGen::Param(IID_IRndmStudentT), m_aValue(a) { }
double m_aValue
StudentT distribution parameter.
virtual Rndm::StudentT::~StudentT ( )
inlinevirtual

Standard Destructor.

Definition at line 180 of file RndmGenerators.h.

180 { }

Member Function Documentation

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

Access A parameter.

Definition at line 182 of file RndmGenerators.h.

182 { return m_aValue; }
double m_aValue
StudentT distribution parameter.
virtual IRndmGen::Param* Rndm::StudentT::clone ( ) const
inlinevirtual

Clone parameters.

Implements IRndmGen::Param.

Definition at line 186 of file RndmGenerators.h.

186 { 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 184 of file RndmGenerators.h.

184 { return IID_IRndmStudentT; }

Friends And Related Function Documentation

friend class Generator< StudentT >
friend

Definition at line 172 of file RndmGenerators.h.

Member Data Documentation

double Rndm::StudentT::m_aValue
protected

StudentT distribution parameter.

Definition at line 175 of file RndmGenerators.h.


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