diff --git a/dumux/material/spatialparams/CMakeLists.txt b/dumux/material/spatialparams/CMakeLists.txt
index 5d3a46d6518ca96f8d7840873ef44c7e83036d2e..bd834d827b3a1dfb6bc85ce0ad2af95cf00cc76e 100644
--- a/dumux/material/spatialparams/CMakeLists.txt
+++ b/dumux/material/spatialparams/CMakeLists.txt
@@ -1,8 +1,9 @@
 
 #install headers
 install(FILES
-fv1p.hh
 fv.hh
-implicit1p.hh
-implicit.hh
+fv1p.hh
+gstatrandomfield.hh
+sequentialfv.hh
+sequentialfv1p.hh
 DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/material/spatialparams)
diff --git a/dumux/material/spatialparams/fv.hh b/dumux/material/spatialparams/fv.hh
index b0e710206108c9239e8c58f03d08e410e60f506f..d53477d5ab2ba40ff7dddc4f8a0c79972653de46 100644
--- a/dumux/material/spatialparams/fv.hh
+++ b/dumux/material/spatialparams/fv.hh
@@ -18,7 +18,6 @@
  *****************************************************************************/
 /*!
  * \file
- *
  * \ingroup SpatialParameters
  * \brief The base class for spatial parameters of multi-phase problems
  * using a fully implicit discretization method.
@@ -34,10 +33,6 @@ namespace Dumux {
 
 /*!
  * \ingroup SpatialParameters
- */
-
-
-/**
  * \brief The base class for spatial parameters of multi-phase problems
  * using a fully implicit discretization method.
  */
diff --git a/dumux/material/spatialparams/fv1p.hh b/dumux/material/spatialparams/fv1p.hh
index b5d73a51a431ca773f1ae7805ca442cd4250a5f4..5ee11e11853de82c43e022e1bf620c6d85283d41 100644
--- a/dumux/material/spatialparams/fv1p.hh
+++ b/dumux/material/spatialparams/fv1p.hh
@@ -18,7 +18,6 @@
  *****************************************************************************/
 /*!
  * \file
- *
  * \ingroup SpatialParameters
  * \brief The base class for spatial parameters of one-phase problems
  * using a fully implicit discretization method.
@@ -37,9 +36,6 @@ namespace Dumux {
 
 /*!
  * \ingroup SpatialParameters
- */
-
-/**
  * \brief The base class for spatial parameters of one-phase problems
  * using a fully implicit discretization method.
  */
diff --git a/dumux/material/spatialparams/gstatrandomfield.hh b/dumux/material/spatialparams/gstatrandomfield.hh
index c6c51b8aea3da2ddc286f24bcf2888fcff829c65..a3611abd25de38b78552c6ab78bb0c4973e61075 100644
--- a/dumux/material/spatialparams/gstatrandomfield.hh
+++ b/dumux/material/spatialparams/gstatrandomfield.hh
@@ -18,7 +18,6 @@
  *****************************************************************************/
 /*!
  * \file
- *
  * \ingroup SpatialParameters
  * \brief Creating random fields using gstat
  */
@@ -77,23 +76,22 @@ public:
     , data_(gridView.size(0))
     {}
 
-      /*!
-       * \brief Creates a new field with random variables, if desired.
-       * Otherwise creates a data field from already available data.
-       * For the random field generation three files are necessary.
-       *
-       * A \a gstatControlFile in which all commands and in/output files for gstat are specified.
-       * A \a gstatInputFile contains all coordinates (cell centers) of the grid, so that
-       * gstat can perform its random realization. The filename must be same as in the gstatControlFile.
-       * A \a gstatOutputFile in which gstat writes the random values to this file.
-       * The filename must be the same as in the gstatControlFile.
-       * \param fieldType
-       * \param gstatControlFile name of control file for gstat
-       * \param gstatInputFile name of input file for gstat
-       * \param gstatOutputFile name of the gstat output file
-       * \param createNew set true to create a new field
-       */
-
+    /*!
+     * \brief Creates a new field with random variables, if desired.
+     * Otherwise creates a data field from already available data.
+     * For the random field generation three files are necessary.
+     *
+     * A \a gstatControlFile in which all commands and in/output files for gstat are specified.
+     * A \a gstatInputFile contains all coordinates (cell centers) of the grid, so that
+     * gstat can perform its random realization. The filename must be same as in the gstatControlFile.
+     * A \a gstatOutputFile in which gstat writes the random values to this file.
+     * The filename must be the same as in the gstatControlFile.
+     * \param fieldType
+     * \param gstatControlFile name of control file for gstat
+     * \param gstatInputFile name of input file for gstat
+     * \param gstatOutputFile name of the gstat output file
+     * \param createNew set true to create a new field
+     */
     void create(const std::string& gstatControlFile,
                 const std::string& gstatInputFile = "gstatInput.txt",
                 const std::string& gstatOutputFile = "permeab.dat",
diff --git a/dumux/material/spatialparams/sequentialfv.hh b/dumux/material/spatialparams/sequentialfv.hh
index fafa8a703bfa4906aa9ab2b9d9727fe1f8201836..1f214c28db3d3fbc66d47e72b16b5c9c0ed7ea4d 100644
--- a/dumux/material/spatialparams/sequentialfv.hh
+++ b/dumux/material/spatialparams/sequentialfv.hh
@@ -18,7 +18,6 @@
  *****************************************************************************/
 /*!
  * \file
- *
  * \ingroup SpatialParameters
  * \brief The base class for spatial parameters of problems using the
  *        fv method.
@@ -33,9 +32,6 @@ namespace Dumux
 {
 /*!
  * \ingroup SpatialParameters
- */
-
-/**
  * \brief The base class for spatial parameters of a multi-phase problem using the
  *        fv method.
  */
diff --git a/dumux/material/spatialparams/sequentialfv1p.hh b/dumux/material/spatialparams/sequentialfv1p.hh
index 211389183ce651a93043b5540195f27ae7329d99..1f19e64005f771bb62e494a8b83bdaeb4a0f2abb 100644
--- a/dumux/material/spatialparams/sequentialfv1p.hh
+++ b/dumux/material/spatialparams/sequentialfv1p.hh
@@ -18,7 +18,6 @@
  *****************************************************************************/
 /*!
  * \file
- *
  * \ingroup SpatialParameters
  * \brief The base class for spatial parameters of problems using the
  *        fv method.
@@ -39,12 +38,8 @@ namespace Properties
 NEW_PROP_TAG(SpatialParams);
 }
 
-
 /*!
  * \ingroup SpatialParameters
- */
-
-/**
  * \brief The base class for spatial parameters of problems using the
  *        fv method.
  */