queso-0.51.1
List of all members
QUESO::UniformVectorRealizer< V, M > Class Template Reference

A class for handling sampling from a Uniform probability density distribution. More...

#include <UniformVectorRealizer.h>

Inheritance diagram for QUESO::UniformVectorRealizer< V, M >:
Inheritance graph
[legend]
Collaboration diagram for QUESO::UniformVectorRealizer< V, M >:
Collaboration graph
[legend]

Public Member Functions

Constructor/Destructor methods
 UniformVectorRealizer (const char *prefix, const VectorSet< V, M > &unifiedImageSet)
 Constructor. More...
 
 ~UniformVectorRealizer ()
 Destructor. More...
 
Realization-related methods
void realization (V &nextValues) const
 Draws a realization. More...
 
- Public Member Functions inherited from QUESO::BaseVectorRealizer< V, M >
 BaseVectorRealizer (const char *prefix, const VectorSet< V, M > &unifiedImageSet, unsigned int subPeriod)
 Default constructor. More...
 
virtual ~BaseVectorRealizer ()
 Virtual destructor. More...
 
const VectorSet< V, M > & unifiedImageSet () const
 Image set where the realizations lie. Access to protected attribute m_unifiedImageSet. More...
 
unsigned int subPeriod () const
 Sub-period of the realization. Access to protected attribute m_subPeriod. More...
 

Additional Inherited Members

- Protected Attributes inherited from QUESO::BaseVectorRealizer< V, M >
const BaseEnvironmentm_env
 
std::string m_prefix
 
const VectorSet< V, M > & m_unifiedImageSet
 
unsigned int m_subPeriod
 

Detailed Description

template<class V, class M>
class QUESO::UniformVectorRealizer< V, M >

A class for handling sampling from a Uniform probability density distribution.

This class handles sampling from a uniform probability density distribution.

Definition at line 45 of file UniformVectorRealizer.h.

Constructor & Destructor Documentation

template<class V , class M >
QUESO::UniformVectorRealizer< V, M >::UniformVectorRealizer ( const char *  prefix,
const VectorSet< V, M > &  unifiedImageSet 
)

Constructor.

Constructs a new object, given a prefix and the image set of the vector realizer.

Definition at line 33 of file UniformVectorRealizer.C.

References QUESO::BaseEnvironment::displayVerbosity(), QUESO::BaseVectorRealizer< V, M >::m_env, QUESO::BaseVectorRealizer< V, M >::m_prefix, and QUESO::BaseEnvironment::subDisplayFile().

36  :
37  BaseVectorRealizer<V,M>(((std::string)(prefix)+"gen").c_str(),unifiedImageSet,std::numeric_limits<unsigned int>::max())
38 {
39  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 5)) {
40  *m_env.subDisplayFile() << "Entering UniformVectorRealizer<V,M>::constructor()"
41  << ": prefix = " << m_prefix
42  << std::endl;
43  }
44 
45  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 5)) {
46  *m_env.subDisplayFile() << "Leaving UniformVectorRealizer<V,M>::constructor()"
47  << ": prefix = " << m_prefix
48  << std::endl;
49  }
50 }
std::ofstream * subDisplayFile() const
Access function for m_subDisplayFile (displays file on stream).
Definition: Environment.C:305
const BaseEnvironment & m_env
unsigned int displayVerbosity() const
Definition: Environment.C:436
const VectorSet< V, M > & unifiedImageSet() const
Image set where the realizations lie. Access to protected attribute m_unifiedImageSet.
template<class V , class M >
QUESO::UniformVectorRealizer< V, M >::~UniformVectorRealizer ( )

Destructor.

Definition at line 53 of file UniformVectorRealizer.C.

54 {
55 }

Member Function Documentation

template<class V , class M >
void QUESO::UniformVectorRealizer< V, M >::realization ( V &  nextValues) const
virtual

Draws a realization.

This function draws a realization of a uniform distribution and saves it in nextValues. It internally finds the minimum and the maximum values of the distribution.

Implements QUESO::BaseVectorRealizer< V, M >.

Definition at line 59 of file UniformVectorRealizer.C.

References QUESO::BoxSubset< V, M >::maxValues(), QUESO::BoxSubset< V, M >::minValues(), and UQ_FATAL_TEST_MACRO.

60 {
61  const BoxSubset<V,M>* imageBox = dynamic_cast<const BoxSubset<V,M>* >(&m_unifiedImageSet);
62 
63  UQ_FATAL_TEST_MACRO(imageBox == NULL,
64  m_env.worldRank(),
65  "UniformVectorRealizer<V,M>::realization()",
66  "only box images are supported right now");
67 
68  nextValues.cwSetUniform(imageBox->minValues(),imageBox->maxValues());
69  return;
70 }
const VectorSet< V, M > & m_unifiedImageSet
int worldRank() const
Returns the process world rank.
Definition: Environment.C:235
const BaseEnvironment & m_env
#define UQ_FATAL_TEST_MACRO(test, givenRank, where, what)
Definition: Defines.h:223

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

Generated on Thu Apr 23 2015 19:26:18 for queso-0.51.1 by  doxygen 1.8.5