From 293232b506170ade9971f74bcef2707abc846d3f Mon Sep 17 00:00:00 2001
From: vishal jambhekar <vishal.jambhekar@iws.uni-stuttgart.de>
Date: Wed, 22 Feb 2012 09:34:20 +0000
Subject: [PATCH] Doxygen corrections :)

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7850 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh | 3 +++
 dumux/decoupled/2p2c/fvpressurecompositional.hh           | 2 ++
 dumux/decoupled/common/fv/fvpressure.hh                   | 4 ++--
 dumux/decoupled/common/gridadapt.hh                       | 5 -----
 dumux/decoupled/common/variableclass.hh                   | 2 --
 test/decoupled/1p/test_diffusion_spatialparams.hh         | 3 ++-
 6 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh b/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh
index b35421f34e..e40caf9780 100644
--- a/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh
+++ b/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh
@@ -113,7 +113,10 @@ template<class TypeTag> class MimeticPressure2P
     typedef Dune::BlockVector< Dune::FieldVector<Scalar, 1> > TraceType;
     typedef Dune::BlockVector< Dune::FieldVector<Scalar, 2*dim> > NormalVelType;
     typedef MimeticOperatorAssembler<Scalar,GridView> OperatorAssembler;
+
+    ///@cond 0
     typedef typename GET_PROP(TypeTag, SolutionTypes)::ScalarSolution ScalarSolution;
+    ///@endcond
 
     typedef typename GET_PROP_TYPE(TypeTag, PressureCoefficientMatrix) Matrix;
     typedef typename GET_PROP_TYPE(TypeTag, PressureRHSVector) Vector;
diff --git a/dumux/decoupled/2p2c/fvpressurecompositional.hh b/dumux/decoupled/2p2c/fvpressurecompositional.hh
index 883dee7680..5de615b74c 100644
--- a/dumux/decoupled/2p2c/fvpressurecompositional.hh
+++ b/dumux/decoupled/2p2c/fvpressurecompositional.hh
@@ -75,7 +75,9 @@ template<class TypeTag> class FVPressureCompositional
 
     typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
     typedef typename GET_PROP_TYPE(TypeTag, FluidState) FluidState;
+    ///@cond 0
     typedef typename GET_PROP_TYPE(TypeTag, SpatialParameters)::MaterialLaw MaterialLaw;
+    ///@endcond
 
     typedef typename GET_PROP_TYPE(TypeTag, CellData) CellData;
     enum
diff --git a/dumux/decoupled/common/fv/fvpressure.hh b/dumux/decoupled/common/fv/fvpressure.hh
index b76dfb69f3..94c96a77db 100644
--- a/dumux/decoupled/common/fv/fvpressure.hh
+++ b/dumux/decoupled/common/fv/fvpressure.hh
@@ -53,9 +53,9 @@ template<class TypeTag> class FVPressure
     typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView;
     typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
     typedef typename GET_PROP_TYPE(TypeTag, Problem) Problem;
-
+    ///@cond 0
     typedef typename GET_PROP(TypeTag, SolutionTypes)::ScalarSolution ScalarSolution;
-
+    ///@endcond
     typedef typename GET_PROP_TYPE(TypeTag, CellData) CellData;
     enum
     {
diff --git a/dumux/decoupled/common/gridadapt.hh b/dumux/decoupled/common/gridadapt.hh
index cad9aed8ae..3bcc2645ed 100644
--- a/dumux/decoupled/common/gridadapt.hh
+++ b/dumux/decoupled/common/gridadapt.hh
@@ -63,8 +63,6 @@ public:
     /*!
      * Constructor for h-adaptive simulations (adaptive grids)
      * @param problem The problem
-     * @param levelMin minimum refinement level
-     * @param levelMax maximum refinement level
      */
     GridAdapt (Problem& problem)
     : problem_(problem), adaptionIndicator_(problem)
@@ -145,9 +143,6 @@ public:
 
     /*!
      * Mark Elements for grid refinement according to applied Indicator
-     * @param indicator Vector where the refinement indicator is stored
-     * @param refineThreshold lower threshold where to refine
-     * @param coarsenThreshold upper threshold where to coarsen
      * @return Total ammount of marked cells
      */
     int markElements()
diff --git a/dumux/decoupled/common/variableclass.hh b/dumux/decoupled/common/variableclass.hh
index c039f6fa14..aee741f225 100644
--- a/dumux/decoupled/common/variableclass.hh
+++ b/dumux/decoupled/common/variableclass.hh
@@ -84,8 +84,6 @@ public:
     //! Constructs a VariableClass object
     /**
      *  @param gridView a DUNE gridview object corresponding to diffusion and transport equation
-     *  @param codim codimension of the entity of which data has to be strored
-     *  @param initialVel initial value for the velocity (only necessary if only transport part is solved)
      */
     VariableClass(const GridView& gridView) :
         gridView_(gridView), elementMapper_(gridView), vertexMapper_(gridView)
diff --git a/test/decoupled/1p/test_diffusion_spatialparams.hh b/test/decoupled/1p/test_diffusion_spatialparams.hh
index 2213577d08..945bfbc101 100644
--- a/test/decoupled/1p/test_diffusion_spatialparams.hh
+++ b/test/decoupled/1p/test_diffusion_spatialparams.hh
@@ -70,8 +70,9 @@ class TestDiffusionSpatialParams: public FVSpatialParameters<TypeTag>
     typedef typename GridView::IndexSet IndexSet;
     typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
     typedef typename Grid::ctype CoordScalar;
+    ///@cond 0
     typedef typename GET_PROP(TypeTag, SolutionTypes)::ScalarSolution ScalarSolution;
-
+    ///@endcond
     enum
         {dim=Grid::dimension, dimWorld=Grid::dimensionworld, numEq=1};
     typedef typename Grid::Traits::template Codim<0>::Entity Element;
-- 
GitLab