25 #include <queso/StdOneDGrid.h> 
   33   const std::vector<T>&         points)
 
   60   return m_points.size();
 
   76   queso_require_msg(!((paramValue < m_points[0]) || (m_points[m_points.size()-1] < paramValue)), 
"paramValue is out of domain");
 
   78   unsigned int iMax = m_points.size();
 
   80   for (i = 1; i < iMax; ++i) { 
 
   81     if (paramValue < m_points[i]) {
 
std::ofstream * subDisplayFile() const 
Access function for m_subDisplayFile (displays file on stream). 
 
StdOneDGrid(const BaseEnvironment &env, const char *prefix, const std::vector< T > &points)
Default constructor. 
 
This (virtual) class sets up the environment underlying the use of the QUESO library by an executable...
 
#define queso_require_less_msg(expr1, expr2, msg)
 
~StdOneDGrid()
Destructor. 
 
Base class for accommodating one-dimensional grids. 
 
unsigned int displayVerbosity() const 
 
#define queso_require_msg(asserted, msg)
 
T operator[](unsigned int i) const 
Returns the position of the i-th point in the grid. 
 
unsigned int findIntervalId(const T ¶mValue) const 
Finds the ID of an interval. See template specialization. 
 
unsigned int size() const 
Grid size; the amount of points which defines the grid. 
 
const BaseEnvironment & m_env