queso-0.51.1
Protected Attributes | List of all members
QUESO::InverseGammaJointPdf< V, M > Class Template Reference

A class for handling Inverse Gamma joint PDFs. More...

#include <InverseGammaJointPdf.h>

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

Public Member Functions

Constructor/Destructor methods
 InverseGammaJointPdf (const char *prefix, const VectorSet< V, M > &domainSet, const V &alpha, const V &beta)
 Constructor. More...
 
 ~InverseGammaJointPdf ()
 Destructor. More...
 
Math methods
double actualValue (const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const
 Actual value of the Gamma PDF. More...
 
double lnValue (const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const
 TODO: Logarithm of the value of the Gamma PDF. More...
 
double computeLogOfNormalizationFactor (unsigned int numSamples, bool updateFactorInternally) const
 Computes the logarithm of the normalization factor. More...
 
- Public Member Functions inherited from QUESO::BaseJointPdf< V, M >
 BaseJointPdf (const char *prefix, const VectorSet< V, M > &domainSet)
 Default constructor. More...
 
virtual ~BaseJointPdf ()
 Destructor. More...
 
virtual void setNormalizationStyle (unsigned int value) const
 Sets a value to be used in the normalization style (stored in the protected attribute m_normalizationStyle.) More...
 
void setLogOfNormalizationFactor (double value) const
 Sets a logarithmic value to be used in the normalization factor (stored in the protected attribute m_normalizationStyle.) More...
 
- Public Member Functions inherited from QUESO::BaseScalarFunction< V, M >
 BaseScalarFunction (const char *prefix, const VectorSet< V, M > &domainSet)
 Default constructor. More...
 
virtual ~BaseScalarFunction ()
 Destructor. More...
 
const VectorSet< V, M > & domainSet () const
 Access to the protected attribute m_domainSet: domain set of the scalar function. More...
 

Protected Attributes

m_alpha
 
m_beta
 
- Protected Attributes inherited from QUESO::BaseJointPdf< V, M >
unsigned int m_normalizationStyle
 
double m_logOfNormalizationFactor
 
- Protected Attributes inherited from QUESO::BaseScalarFunction< V, M >
const BaseEnvironmentm_env
 
std::string m_prefix
 
const VectorSet< V, M > & m_domainSet
 Domain set of the scalar function. More...
 

Additional Inherited Members

- Protected Member Functions inherited from QUESO::BaseJointPdf< V, M >
double commonComputeLogOfNormalizationFactor (unsigned int numSamples, bool updateFactorInternally) const
 Common method (to the derived classes) to compute the logarithm of the normalization factor. More...
 

Detailed Description

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

A class for handling Inverse Gamma joint PDFs.

This class allows the mathematical definition of an Inverse Gamma Joint PDF.

Definition at line 49 of file InverseGammaJointPdf.h.

Constructor & Destructor Documentation

template<class V , class M >
QUESO::InverseGammaJointPdf< V, M >::InverseGammaJointPdf ( const char *  prefix,
const VectorSet< V, M > &  domainSet,
const V &  alpha,
const V &  beta 
)

Constructor.

Constructs a new object of the class, given a prefix, the domain set, and the parameters alpha and beta of the Inverse Gamma PDF.

Definition at line 33 of file InverseGammaJointPdf.C.

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

38  :
39  BaseJointPdf<V,M>(((std::string)(prefix)+"uni").c_str(),domainSet),
40  m_alpha(alpha),
41  m_beta (beta)
42 {
43  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 54)) {
44  *m_env.subDisplayFile() << "Entering InverseGammaJointPdf<V,M>::constructor()"
45  << ": prefix = " << m_prefix
46  << std::endl;
47  }
48 
49  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 54)) {
50  *m_env.subDisplayFile() << "Leaving InverseGammaJointPdf<V,M>::constructor()"
51  << ": prefix = " << m_prefix
52  << std::endl;
53  }
54 }
std::ofstream * subDisplayFile() const
Access function for m_subDisplayFile (displays file on stream).
Definition: Environment.C:305
const VectorSet< V, M > & domainSet() const
Access to the protected attribute m_domainSet: domain set of the scalar function. ...
const BaseEnvironment & m_env
unsigned int displayVerbosity() const
Definition: Environment.C:436
template<class V , class M >
QUESO::InverseGammaJointPdf< V, M >::~InverseGammaJointPdf ( )

Destructor.

Definition at line 57 of file InverseGammaJointPdf.C.

58 {
59 }

Member Function Documentation

template<class V , class M >
double QUESO::InverseGammaJointPdf< V, M >::actualValue ( const V &  domainVector,
const V *  domainDirection,
V *  gradVector,
M *  hessianMatrix,
V *  hessianEffect 
) const
virtual

Actual value of the Gamma PDF.

This routine calls method lnValue() and returns the exponent of the returning value of such method.

Implements QUESO::BaseJointPdf< V, M >.

Definition at line 63 of file InverseGammaJointPdf.C.

References UQ_FATAL_TEST_MACRO.

69 {
70  UQ_FATAL_TEST_MACRO(domainVector.sizeLocal() != this->m_domainSet.vectorSpace().dimLocal(),
71  m_env.worldRank(),
72  "InverseGammaJointPdf<V,M>::actualValue()",
73  "invalid input");
74 
75  UQ_FATAL_TEST_MACRO((domainDirection || gradVector || hessianMatrix || hessianEffect),
76  m_env.worldRank(),
77  "InverseGammaJointPdf<V,M>::actualValue()",
78  "incomplete code for gradVector, hessianMatrix and hessianEffect calculations");
79 
80  // No need to multiply by exp(m_logOfNormalizationFactor) because 'lnValue()' is called [PDF-07]
81  return exp(this->lnValue(domainVector,domainDirection,gradVector,hessianMatrix,hessianEffect));
82 }
double lnValue(const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const
TODO: Logarithm of the value of the Gamma PDF.
int worldRank() const
Returns the process world rank.
Definition: Environment.C:235
const VectorSet< V, M > & m_domainSet
Domain set of the scalar function.
const BaseEnvironment & m_env
#define UQ_FATAL_TEST_MACRO(test, givenRank, where, what)
Definition: Defines.h:223
template<class V , class M >
double QUESO::InverseGammaJointPdf< V, M >::computeLogOfNormalizationFactor ( unsigned int  numSamples,
bool  updateFactorInternally 
) const
virtual

Computes the logarithm of the normalization factor.

This routine calls BaseJointPdf::commonComputeLogOfNormalizationFactor().

Implements QUESO::BaseJointPdf< V, M >.

Definition at line 113 of file InverseGammaJointPdf.C.

References QUESO::BaseJointPdf< V, M >::commonComputeLogOfNormalizationFactor().

114 {
115  double value = 0.;
116 
117  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 2)) {
118  *m_env.subDisplayFile() << "Entering InverseGammaJointPdf<V,M>::computeLogOfNormalizationFactor()"
119  << std::endl;
120  }
121  value = BaseJointPdf<V,M>::commonComputeLogOfNormalizationFactor(numSamples, updateFactorInternally);
122  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 2)) {
123  *m_env.subDisplayFile() << "Leaving InverseGammaJointPdf<V,M>::computeLogOfNormalizationFactor()"
124  << ", m_logOfNormalizationFactor = " << m_logOfNormalizationFactor
125  << std::endl;
126  }
127 
128  return value;
129 }
std::ofstream * subDisplayFile() const
Access function for m_subDisplayFile (displays file on stream).
Definition: Environment.C:305
double m_logOfNormalizationFactor
Definition: JointPdf.h:104
const BaseEnvironment & m_env
double commonComputeLogOfNormalizationFactor(unsigned int numSamples, bool updateFactorInternally) const
Common method (to the derived classes) to compute the logarithm of the normalization factor...
Definition: JointPdf.C:77
unsigned int displayVerbosity() const
Definition: Environment.C:436
template<class V , class M >
double QUESO::InverseGammaJointPdf< V, M >::lnValue ( const V &  domainVector,
const V *  domainDirection,
V *  gradVector,
M *  hessianMatrix,
V *  hessianEffect 
) const
virtual

TODO: Logarithm of the value of the Gamma PDF.

Todo:
: implement me!

Implements QUESO::BaseJointPdf< V, M >.

Definition at line 86 of file InverseGammaJointPdf.C.

References UQ_FATAL_TEST_MACRO.

92 {
93  UQ_FATAL_TEST_MACRO((domainDirection || gradVector || hessianMatrix || hessianEffect),
94  m_env.worldRank(),
95  "InverseGammaJointPdf<V,M>::lnValue()",
96  "incomplete code for gradVector, hessianMatrix and hessianEffect calculations");
97 
98  double result = 0.;
99  for (unsigned int i = 0; i < domainVector.sizeLocal(); ++i) {
100  result -= (m_alpha[i]+1.)*log(domainVector[i]);
101  result -= m_beta[i]/domainVector[i];
102  if (m_normalizationStyle == 0) {
103  // Code needs to be done yet
104  }
105  }
106  result += m_logOfNormalizationFactor; // [PDF-07]
107 
108  return result;
109 }
int worldRank() const
Returns the process world rank.
Definition: Environment.C:235
unsigned int m_normalizationStyle
Definition: JointPdf.h:103
double m_logOfNormalizationFactor
Definition: JointPdf.h:104
const BaseEnvironment & m_env
#define UQ_FATAL_TEST_MACRO(test, givenRank, where, what)
Definition: Defines.h:223

Member Data Documentation

template<class V, class M>
V QUESO::InverseGammaJointPdf< V, M >::m_alpha
protected

Definition at line 86 of file InverseGammaJointPdf.h.

template<class V, class M>
V QUESO::InverseGammaJointPdf< V, M >::m_beta
protected

Definition at line 87 of file InverseGammaJointPdf.h.


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