From 864ad4afb4cf82f3031c8c63f7e96f720060cf32 Mon Sep 17 00:00:00 2001
From: kronbichler <kronbichler@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Tue, 25 Feb 2014 07:39:34 +0000
Subject: [PATCH] Augment documentation

git-svn-id: https://svn.dealii.org/trunk@32547 0785d39b-7218-0410-832d-ea1e28bc413d
---
 .../deal.II/matrix_free/mapping_fe_evaluation.h    | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/deal.II/include/deal.II/matrix_free/mapping_fe_evaluation.h b/deal.II/include/deal.II/matrix_free/mapping_fe_evaluation.h
index 2c42f1e98f..3eb5aaf7d6 100644
--- a/deal.II/include/deal.II/matrix_free/mapping_fe_evaluation.h
+++ b/deal.II/include/deal.II/matrix_free/mapping_fe_evaluation.h
@@ -42,7 +42,13 @@ DEAL_II_NAMESPACE_OPEN
  * the same element. This interface is thus primarily useful for evaluating
  * several operators on the same cell, e.g., when assembling cell matrices.
  *
- * @author Martin Kronbichler
+ * As opposed to the standard Mapping classes in deal.II, this class does not
+ * actually provide a boundary description that can be used to evaluate the
+ * geometry, but it rather provides the evaluated geometry from a given
+ * deal.II mapping (as passed to the constructor of this class) in a form
+ * accessible to FEEvaluation.
+ *
+ * @author Martin Kronbichler, 2014
  */
 template <int dim, typename Number=double>
 class MappingFEEvaluation : public Subscriptor
@@ -54,14 +60,14 @@ public:
    * FE_Nothing, is used internally for the underlying FEValues object.
    */
   MappingFEEvaluation (const Mapping<dim> &mapping,
-                     const Quadrature<1> &quadrature,
-                     const UpdateFlags update_flags);
+                       const Quadrature<1> &quadrature,
+                       const UpdateFlags update_flags);
 
   /**
    * Constructor. Instead of providing a mapping, use MappingQ1.
    */
   MappingFEEvaluation (const Quadrature<1> &quadrature,
-                     const UpdateFlags update_flags);
+                       const UpdateFlags update_flags);
 
   /**
    * Initialize with the given cell iterator. This works for all type of
-- 
2.39.5