From 3c7fb006c0e0cb844ae4409a5e09a70a054d28e7 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 28 Aug 2013 15:19:53 +0000 Subject: [PATCH] Minor cleanups. git-svn-id: https://svn.dealii.org/trunk@30519 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/hp/dof_faces.h | 33 ++++++++++---------------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/deal.II/include/deal.II/hp/dof_faces.h b/deal.II/include/deal.II/hp/dof_faces.h index bc7129518d..2937bf902d 100644 --- a/deal.II/include/deal.II/hp/dof_faces.h +++ b/deal.II/include/deal.II/hp/dof_faces.h @@ -40,9 +40,6 @@ namespace internal { /** - * - *

DoFFaces

- * * These classes are similar to the internal::hp::DoFLevel classes. We here store * information that is associated with faces, rather than cells, as this information is * independent of the hierarchical structure of cells, which are organized in levels. In 2D @@ -66,27 +63,13 @@ namespace internal * @ingroup dofs * @author Tobias Leicht, 2006 */ - - - - - - template - class DoFFaces - { - /** - * Make the constrctor private to prevent the use - * of this template, only the specializations - * should be used - */ - private: - DoFFaces(); - }; + class DoFFaces; + /** * Store the indices of degrees of freedom on faces in 1D. As these would be vertices, which - * are treted separately, don't do anything. + * are treated separately, don't do anything. * * @ingroup hp * @author Tobias Leicht, 2006 @@ -113,6 +96,9 @@ namespace internal class DoFFaces<2> { public: + /** + * Indices of DoFs on the lines that bound cells. + */ internal::hp::DoFObjects<1> lines; /** @@ -134,7 +120,14 @@ namespace internal class DoFFaces<3> { public: + /** + * Indices of DoFs on the lines that form the edges of cells. + */ internal::hp::DoFObjects<1> lines; + + /** + * Indices of DoFs on the quads that bound cells. + */ internal::hp::DoFObjects<2> quads; /** -- 2.39.5