Line data Source code
1 : // 2 : // This namespace has evolved to contain some general Interpolator routines that 3 : // are actually unrelated. 4 : // The :ref:`Numeric::Interpolator::Linear` is an I/O utility. 5 : // The :ref:`Numeric::Interpolator::NodeBilinear` is a low-level AMReX override that 6 : // the average user (or even coder) will probably not need to touch. 7 : // 8 : 9 : #ifndef NUMERIC_INTERPOLATOR_H_ 10 : #define NUMERIC_INTERPOLATOR_H_ 11 : 12 : #include <AMReX.H> 13 : #include <AMReX_MultiFab.H> 14 : #include "Set/Set.H" 15 : 16 : namespace Numeric 17 : { 18 : namespace Interpolator 19 : { 20 : template<class T> 21 : class Interpolator 22 : { 23 : public: 24 1084 : Interpolator() {}; 25 : }; 26 : } 27 : } 28 : #endif