queso-0.53.0
InterpolationSurrogateIOBase.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------bl-
2 //--------------------------------------------------------------------------
3 //
4 // QUESO - a library to support the Quantification of Uncertainty
5 // for Estimation, Simulation and Optimization
6 //
7 // Copyright (C) 2008-2015 The PECOS Development Team
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the Version 2.1 GNU Lesser General
11 // Public License as published by the Free Software Foundation.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc. 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301 USA
22 //
23 //-----------------------------------------------------------------------el-
24 
25 #ifndef UQ_INTERPOLATION_SURROGATE_IO_BASE_H
26 #define UQ_INTERPOLATION_SURROGATE_IO_BASE_H
27 
28 // QUESO
29 #include <queso/ScopedPtr.h>
30 #include <queso/InterpolationSurrogateData.h>
31 
32 namespace QUESO
33 {
34  template<class V, class M>
36  {
37  public:
38 
40 
42 
43  virtual void read( const std::string& filename,
44  const FullEnvironment& env,
45  const std::string& vector_space_prefix,
46  int reading_rank ) =0;
47 
48  virtual void write( const std::string& filename,
50  int writing_rank ) const =0;
51 
53 
57  { return *(this->m_data.get()); };
58 
59  protected:
60 
61  typename ScopedPtr<VectorSpace<V,M> >::Type m_vector_space;
62 
63  typename ScopedPtr<BoxSubset<V,M> >::Type m_domain;
64 
65  std::vector<unsigned int> m_n_points;
66 
67  typename ScopedPtr<InterpolationSurrogateData<V,M> >::Type m_data;
68  };
69 
70 } // end namespace QUESO
71 
72 #endif // UQ_INTERPOLATION_SURROGATE_IO_BASE_H
const InterpolationSurrogateData< V, M > & data() const
Reference to data object.
ScopedPtr< InterpolationSurrogateData< V, M > >::Type m_data
ScopedPtr< VectorSpace< V, M > >::Type m_vector_space
ScopedPtr< BoxSubset< V, M > >::Type m_domain
virtual void read(const std::string &filename, const FullEnvironment &env, const std::string &vector_space_prefix, int reading_rank)=0
This class sets up the full environment underlying the use of the QUESO library by an executable...
Definition: Environment.h:416
virtual void write(const std::string &filename, const InterpolationSurrogateData< V, M > &data, int writing_rank) const =0

Generated on Thu Jun 11 2015 13:52:33 for queso-0.53.0 by  doxygen 1.8.5