diff --git a/AUTHORS.txt b/AUTHORS.txt index 65d88317f9734455c873ea661d7a545a4df987cf..ea429d78e53cf8ea4c0e8ee5f21521c6a760fdc7 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -4,6 +4,7 @@ List of contributors Christian Feichtinger Christian Godenschwager Christoph Rettinger +Christoph Schwarzmeier Daniel Ritter Daniela Anderl David Staubach diff --git a/src/field/adaptors/GhostLayerFieldAdaptor.h b/src/field/adaptors/GhostLayerFieldAdaptor.h index 6aa81b7d2d6280cd6ab144b5166ae65779883df6..f26f87b0ab8d55a7c0d6426ab3e61f06e9b3eda7 100644 --- a/src/field/adaptors/GhostLayerFieldAdaptor.h +++ b/src/field/adaptors/GhostLayerFieldAdaptor.h @@ -183,6 +183,7 @@ public: inline T operator()( cell_idx_t x, cell_idx_t y, cell_idx_t z, uint_t f) const { return functor_( glField_, x,y,z,cell_idx_c(f)); } inline T operator()( const Cell & c ) const { return functor_( glField_, c[0], c[1], c[2] ); } inline T operator()( const Cell & c, cell_idx_t f ) const { return functor_( glField_, c[0], c[1], c[2], f ); } + inline T operator()( const Cell & c, uint_t f ) const { return functor_( glField_, c[0], c[1], c[2], cell_idx_c(f) ); } inline T get( cell_idx_t x, cell_idx_t y, cell_idx_t z) const { return functor_( glField_, x, y, z ); } @@ -190,6 +191,7 @@ public: inline T get( cell_idx_t x, cell_idx_t y, cell_idx_t z, uint_t f ) const { return functor_( glField_, x, y, z, cell_idx_c(f) ); } inline T get( const Cell & c ) const { return functor_( glField_, c[0], c[1], c[2] ); } inline T get( const Cell & c, cell_idx_t f ) const { return functor_( glField_, c[0], c[1], c[2], f ); } + inline T get( const Cell & c, uint_t f ) const { return functor_( glField_, c[0], c[1], c[2], cell_idx_c(f) ); } //@} //*******************************************************************************************************************