|
queso-0.51.1
|
Class for one-dimensional generic quadrature rules (numerical integration of functions). More...
#include <1DQuadrature.h>


Public Member Functions | |
Constructor/Destructor methods | |
| Generic1DQuadrature (double minDomainValue, double maxDomainValue, const std::vector< double > &positions, const std::vector< double > &weights) | |
| Default constructor. More... | |
| ~Generic1DQuadrature () | |
| Destructor. More... | |
Mathematical methods | |
| void | dumbRoutine () const |
| Bogus routine. More... | |
Public Member Functions inherited from QUESO::Base1DQuadrature | |
| Base1DQuadrature (double minDomainValue, double maxDomainValue, unsigned int order) | |
| Default constructor. More... | |
| virtual | ~Base1DQuadrature () |
| Virtual destructor. More... | |
| double | minDomainValue () const |
| Returns the minimum value of the domain of the (one-dimensional) function. More... | |
| double | maxDomainValue () const |
| Returns the maximum value of the domain of the (one-dimensional) function. More... | |
| unsigned int | order () const |
| Returns the order of the quadrature rule. More... | |
| const std::vector< double > & | positions () const |
| Array of the positions for the numerical integration. More... | |
| const std::vector< double > & | weights () const |
| Array of the weights used in the numerical integration. More... | |
Additional Inherited Members | |
Protected Attributes inherited from QUESO::Base1DQuadrature | |
| double | m_minDomainValue |
| double | m_maxDomainValue |
| unsigned int | m_order |
| std::vector< double > | m_positions |
| std::vector< double > | m_weights |
Class for one-dimensional generic quadrature rules (numerical integration of functions).
Class for generic quadrature rules for numerical integration of one-dimensional functions.
Definition at line 97 of file 1DQuadrature.h.
| QUESO::Generic1DQuadrature::Generic1DQuadrature | ( | double | minDomainValue, |
| double | maxDomainValue, | ||
| const std::vector< double > & | positions, | ||
| const std::vector< double > & | weights | ||
| ) |
Default constructor.
Definition at line 98 of file 1DQuadrature.C.
References QUESO::Base1DQuadrature::m_positions, QUESO::Base1DQuadrature::m_weights, QUESO::Base1DQuadrature::positions(), UQ_FATAL_TEST_MACRO, QUESO::UQ_UNAVAILABLE_RANK, and QUESO::Base1DQuadrature::weights().
| QUESO::Generic1DQuadrature::~Generic1DQuadrature | ( | ) |
|
virtual |