25 #ifndef UQ_GENERIC_JOINT_PROB_DENSITY_H 
   26 #define UQ_GENERIC_JOINT_PROB_DENSITY_H 
   30 #include <queso/JointPdf.h> 
   31 #include <queso/Environment.h> 
   32 #include <queso/ScalarFunction.h> 
   33 #include <queso/BoxSubset.h> 
   49 template <
class V = GslVector, 
class M = GslMatrix>
 
   68   double actualValue(
const V& domainVector, 
const V* domainDirection, V* gradVector, M* hessianMatrix, V* hessianEffect) 
const;
 
   69   double lnValue    (
const V& domainVector, 
const V* domainDirection, V* gradVector, M* hessianMatrix, V* hessianEffect) 
const;
 
   83 #endif // UQ_GENERIC_JOINT_PROB_DENSITY_H 
A templated (base) class for handling scalar functions. 
 
GenericJointPdf(const char *prefix, const BaseScalarFunction< V, M > &scalarFunction)
Default constructor. 
 
double lnValue(const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const 
Logarithm of the value of the function. 
 
A templated (base) class for handling joint PDFs. 
 
double computeLogOfNormalizationFactor(unsigned int numSamples, bool updateFactorInternally) const 
Computes the logarithm of the normalization factor. See template specialization. 
 
const BaseScalarFunction< V, M > & m_scalarFunction
 
A class for handling generic joint PDFs. 
 
double actualValue(const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const 
Actual value of the PDF (scalar function). 
 
~GenericJointPdf()
Destructor.