Skip to content
Snippets Groups Projects
Commit f2b30494 authored by Timo Koch's avatar Timo Koch
Browse files

[vtk] Make backward compatible with dune 2.5

parent 8f856cf6
No related branches found
No related tags found
1 merge request!617[WIP] Next
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <functional> #include <functional>
#include <dune/common/version.hh>
#include <dune/common/timer.hh> #include <dune/common/timer.hh>
#include <dune/common/fvector.hh> #include <dune/common/fvector.hh>
#include <dune/common/typetraits.hh> #include <dune/common/typetraits.hh>
...@@ -54,10 +55,16 @@ namespace Vtk ...@@ -54,10 +55,16 @@ namespace Vtk
using Element = typename GridView::template Codim<0>::Entity; using Element = typename GridView::template Codim<0>::Entity;
// a VTK function that supports both scalar and vector values for each element // a VTK function that supports both scalar and vector values for each element
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
template <typename F> template <typename F>
struct VectorP0VTKFunction : Dune::VTKFunction<GridView> struct VectorP0VTKFunction : Dune::VTKFunction<GridView>
{ {
using Mapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>; using Mapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>;
#else
template<typename F, typename Mapper>
struct VectorP0VTKFunction : Dune::VTKFunction<GridView>
{
#endif
public: public:
//! return number of components //! return number of components
virtual int ncomps () const virtual int ncomps () const
...@@ -92,10 +99,16 @@ namespace Vtk ...@@ -92,10 +99,16 @@ namespace Vtk
}; };
// a VTK function that supports both scalar and vector values for each vertex // a VTK function that supports both scalar and vector values for each vertex
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
template <typename F> template <typename F>
struct VectorP1VTKFunction : Dune::VTKFunction<GridView> struct VectorP1VTKFunction : Dune::VTKFunction<GridView>
{ {
using Mapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>; using Mapper = Dune::MultipleCodimMultipleGeomTypeMapper<GridView>;
#else
template<typename F, typename Mapper>
struct VectorP1VTKFunction : Dune::VTKFunction<GridView>
{
#endif
public: public:
//! return number of components //! return number of components
virtual int ncomps () const virtual int ncomps () const
...@@ -148,9 +161,17 @@ namespace Vtk ...@@ -148,9 +161,17 @@ namespace Vtk
: codim_(codim) : codim_(codim)
{ {
if (codim == GridView::dimension) if (codim == GridView::dimension)
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
field_ = std::make_shared<VectorP1VTKFunction<F>>(gridView, mapper, f, name, numComp); field_ = std::make_shared<VectorP1VTKFunction<F>>(gridView, mapper, f, name, numComp);
#else
field_ = std::make_shared<VectorP1VTKFunction<F, Mapper>>(gridView, mapper, f, name, numComp);
#endif
else if (codim == 0) else if (codim == 0)
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
field_ = std::make_shared<VectorP0VTKFunction<F>>(gridView, mapper, f, name, numComp); field_ = std::make_shared<VectorP0VTKFunction<F>>(gridView, mapper, f, name, numComp);
#else
field_ = std::make_shared<VectorP0VTKFunction<F, Mapper>>(gridView, mapper, f, name, numComp);
#endif
else else
DUNE_THROW(Dune::NotImplemented, "Only element or vertex quantities allowed."); DUNE_THROW(Dune::NotImplemented, "Only element or vertex quantities allowed.");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment