casacore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Private Attributes | List of all members
casacore::Geometric Class Reference

Discrete geometric distribution. More...

#include <Random.h>

Inheritance diagram for casacore::Geometric:
casacore::Random

Public Member Functions

 Geometric (RNG *gen, Double probability=0.5)
 Construct a random number generator for a geometric uniform distribution. More...
 
virtual ~Geometric ()
 The destructor is trivial. More...
 
virtual Double operator() ()
 Returns a value from the geometric uniform distribution. More...
 
uInt asInt ()
 
Double probability () const
 Functions that allow you to query and change the parameters of the geometric uniform distribution. More...
 
void probability (Double x)
 
virtual void setParameters (const Vector< Double > &parms)
 These function allow you to manipulate the parameter (probability) described above through the base class. More...
 
virtual Vector< Doubleparameters () const
 
virtual Bool checkParameters (const Vector< Double > &parms) const
 
- Public Member Functions inherited from casacore::Random
virtual ~Random ()
 A virtual destructor is needed to ensure that the destructor of derived classes gets used. More...
 
RNGgenerator ()
 Functions that allow you to access and change the class that generates the random bits. More...
 
void generator (RNG *p)
 

Private Attributes

Double itsProbability
 

Additional Inherited Members

- Public Types inherited from casacore::Random
enum  Types {
  BINOMIAL,
  DISCRETEUNIFORM,
  ERLANG,
  GEOMETRIC,
  HYPERGEOMETRIC,
  NORMAL,
  LOGNORMAL,
  NEGATIVEEXPONENTIAL,
  POISSON,
  UNIFORM,
  WEIBULL,
  UNKNOWN,
  NUMBER_TYPES
}
 This enumerator lists all the predefined random number distributions. More...
 
- Static Public Member Functions inherited from casacore::Random
static String asString (Random::Types type)
 Convert the enumerator to a lower-case string. More...
 
static Random::Types asType (const String &str)
 Convert the string to enumerator. More...
 
static Randomconstruct (Random::Types type, RNG *gen)
 Convert the Random::Type enumerator to a specific object (derived from Random but upcast to a Random object). More...
 
static Vector< DoubledefaultParameters (Random::Types type)
 returns the default parameters for the specified distribution. More...
 
- Protected Member Functions inherited from casacore::Random
 Random (RNG *generator)
 
- Protected Attributes inherited from casacore::Random
RNGitsRNG
 

Detailed Description

Discrete geometric distribution.

Synopsis

The Geometric class implements a discrete geometric distribution. The probability is the only parameter. The operator() functions returns an non-negative integral value indicating the number of uniform random samples actually drawn before one is obtained that is larger than the given probability. To get this same value as an integer use the asInt function.

It is assumed that the probability is between zero and one (0 <= probability < 1) and and AipsError exception thrown if this is not true. The remaining function allow you to read and set the parameters.

Example

Thrown Exceptions

To Do

Definition at line 835 of file Random.h.

Constructor & Destructor Documentation

casacore::Geometric::Geometric ( RNG gen,
Double  probability = 0.5 
)

Construct a random number generator for a geometric uniform distribution.

The first argument is a class that produces random bits. This pointer is NOT taken over by this class and the user is responsible for deleting it. The second argument defines the range of possible return values for this distribution as described in the synopsis.

virtual casacore::Geometric::~Geometric ( )
virtual

The destructor is trivial.

Member Function Documentation

uInt casacore::Geometric::asInt ( )
virtual Bool casacore::Geometric::checkParameters ( const Vector< Double > &  parms) const
virtual

Implements casacore::Random.

virtual Double casacore::Geometric::operator() ( )
virtual

Returns a value from the geometric uniform distribution.

The returned value is a non-negative integer and using the asInt function bypasses the conversion to a floating point number.

Implements casacore::Random.

virtual Vector<Double> casacore::Geometric::parameters ( ) const
virtual

Implements casacore::Random.

Double casacore::Geometric::probability ( ) const
inline

Functions that allow you to query and change the parameters of the geometric uniform distribution.

Definition at line 875 of file Random.h.

References itsProbability.

void casacore::Geometric::probability ( Double  x)
virtual void casacore::Geometric::setParameters ( const Vector< Double > &  parms)
virtual

These function allow you to manipulate the parameter (probability) described above through the base class.

The Vectors must always be of length one.

Implements casacore::Random.

Member Data Documentation

Double casacore::Geometric::itsProbability
private

Definition at line 872 of file Random.h.

Referenced by probability().


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