| 
    queso-0.52.0
    
   | 
 
A class for handling jeffreys joint PDFs. More...
#include <JeffreysJointPdf.h>


Public Member Functions | |
Constructor/Destructor methods  | |
| JeffreysJointPdf (const char *prefix, const VectorSet< V, M > &domainSet) | |
| Constructor.  More... | |
| ~JeffreysJointPdf () | |
| Destructor.  More... | |
Math methods  | |
| double | actualValue (const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const | 
| Actual value of the jeffreys PDF.  More... | |
| double | lnValue (const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const | 
| Logarithm of the value of the jeffreys 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... | |
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... | |
  Protected Attributes inherited from QUESO::BaseJointPdf< V, M > | |
| unsigned int | m_normalizationStyle | 
| double | m_logOfNormalizationFactor | 
  Protected Attributes inherited from QUESO::BaseScalarFunction< V, M > | |
| const BaseEnvironment & | m_env | 
| std::string | m_prefix | 
| const VectorSet< V, M > & | m_domainSet | 
| Domain set of the scalar function.  More... | |
A class for handling jeffreys joint PDFs.
This class allows the mathematical definition of a Jeffreys Joint PDF.
Definition at line 43 of file JeffreysJointPdf.h.
| QUESO::JeffreysJointPdf< V, M >::JeffreysJointPdf | ( | const char * | prefix, | 
| const VectorSet< V, M > & | domainSet | ||
| ) | 
Constructor.
Constructs a new object of the class, given a prefix and the domain set of the jeffreys PDF.
Definition at line 33 of file JeffreysJointPdf.C.
References QUESO::BaseEnvironment::displayVerbosity(), QUESO::BaseScalarFunction< V, M >::m_env, QUESO::BaseScalarFunction< V, M >::m_prefix, and QUESO::BaseEnvironment::subDisplayFile().
| QUESO::JeffreysJointPdf< V, M >::~JeffreysJointPdf | ( | ) | 
      
  | 
  virtual | 
Actual value of the jeffreys PDF.
If the domain of the PDF is well defined (neither negative nor infinite), then the actual value is given by 1.0 / (domainVector[0] * ... * domainVector[n-1]), otherwise the actual value is 0.0 
Implements QUESO::BaseJointPdf< V, M >.
Definition at line 60 of file JeffreysJointPdf.C.
References queso_error_msg.
      
  | 
  virtual | 
Computes the logarithm of the normalization factor.
This routine calls BaseJointPdf::commonComputeLogOfNormalizationFactor().
Implements QUESO::BaseJointPdf< V, M >.
Definition at line 140 of file JeffreysJointPdf.C.
References QUESO::BaseJointPdf< V, M >::commonComputeLogOfNormalizationFactor().
      
  | 
  virtual | 
Logarithm of the value of the jeffreys PDF.
Analogous to the actualValue routine, except that the logarithm of the calculated value is returned. 
Implements QUESO::BaseJointPdf< V, M >.
Definition at line 101 of file JeffreysJointPdf.C.
References queso_error_msg.