From afd8a50b6f1671a9e452275fa6e818e64f905857 Mon Sep 17 00:00:00 2001
From: Markus Wolff <markus.wolff@twt-gmbh.de>
Date: Mon, 29 Oct 2012 14:40:08 +0000
Subject: [PATCH] removed unused stuff in adaptive 2p celldata

discussed with Benjamin



git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@9461 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/decoupled/2p/cellData2padaptive.hh | 55 +-----------------------
 1 file changed, 1 insertion(+), 54 deletions(-)

diff --git a/dumux/decoupled/2p/cellData2padaptive.hh b/dumux/decoupled/2p/cellData2padaptive.hh
index d3d41642c9..58ea761c64 100644
--- a/dumux/decoupled/2p/cellData2padaptive.hh
+++ b/dumux/decoupled/2p/cellData2padaptive.hh
@@ -70,10 +70,6 @@ private:
         numPhases = GET_PROP_VALUE(TypeTag, NumPhases)
     };
 
-private:
-    bool isFront_;
-    Scalar dt_;
-
 public:
     //! Collection of variables that have to be mapped if the grid is adapted
     /**
@@ -100,58 +96,9 @@ public:
     };
 
     //! Constructs an adaptive CellData object
-    CellData2PAdaptive():
-        isFront_(false), dt_(0.0)
+    CellData2PAdaptive()
     {}
 
-    /*! \brief Track the front
-     *
-     * Returns true if the cell is located at a fluid-fluid displacement-front
-     */
-    bool isFront() const
-    {
-        return isFront_;
-    }
-
-    /*! \brief Track the front
-     *
-     * Returns true if the cell is located at a fluid-fluid displacement-front
-     */
-    bool isFront()
-    {
-        return isFront_;
-    }
-
-    /*! \brief Reset the front marker
-     *
-     * Sets front marker to <tt>false</tt>;
-     */
-    void resetFrontMarker()
-    {
-        isFront_ = false;
-    }
-
-    //! Marks the cell as fluid-fluid displacement-front cell
-    void setFront()
-    {
-        isFront_ = true;
-    }
-
-    Scalar dt()
-    {
-        return dt_;
-    }
-
-    Scalar dt() const
-    {
-        return dt_;
-    }
-
-    void setDt(Scalar dt)
-    {
-        dt_ = dt;
-    }
-
     //! Stores values to be adapted in an adaptedValues container
     /**
      * Stores values to be adapted from the current CellData objects into
-- 
GitLab