From 98d68efa5d9dca519a7b8afd0d2dd982da523362 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 18 Feb 2006 04:43:30 +0000 Subject: [PATCH] Doc reindentation. git-svn-id: https://svn.dealii.org/trunk@12410 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/hp_dof_handler.h | 64 +++++++++++-------- 1 file changed, 38 insertions(+), 26 deletions(-) diff --git a/deal.II/deal.II/include/dofs/hp_dof_handler.h b/deal.II/deal.II/include/dofs/hp_dof_handler.h index 1300809287..53890e048d 100644 --- a/deal.II/deal.II/include/dofs/hp_dof_handler.h +++ b/deal.II/deal.II/include/dofs/hp_dof_handler.h @@ -949,24 +949,32 @@ namespace hp /** - * Create default tables for the - * active_fe_indices in the - * internal::hp::DoFLevels. They are - * initialized with the base fe. - * This method is called before - * refinement and before distribute_dofs - * is called. It ensures each cell has - * a valid active_fe_index. + * Create default tables for + * the active_fe_indices in + * the + * internal::hp::DoFLevels. They + * are initialized with the a + * zero indicator, meaning + * that fe[0] is going to be + * used by default. This + * method is called before + * refinement and before + * distribute_dofs is + * called. It ensures each + * cell has a valid + * active_fe_index. */ void create_active_fe_table (); /** - * Methods of the RefinementListener - * coming from the Triangulation. - * Here they are used to administrate the - * the active_fe_fields during the spatial - * refinement. + * Methods of the + * RefinementListener coming + * from the Triangulation. + * Here they are used to + * administrate the the + * active_fe_fields during the + * spatial refinement. */ virtual void pre_refinement_notification (const Triangulation &tria); @@ -974,31 +982,35 @@ namespace hp /** - * Space to store the DoF numbers for the - * different levels. Analogous to the - * levels[] tree of the Triangulation - * objects. + * Space to store the DoF + * numbers for the different + * levels. Analogous to the + * levels[] tree of + * the Triangulation objects. */ std::vector*> levels; /** - * Store the number of dofs created last - * time. + * Store the number of dofs + * created last time. */ unsigned int used_dofs; /** - * Array to store the indices for degrees - * of freedom located at vertices. + * Array to store the indices + * for degrees of freedom + * located at vertices. */ std::vector vertex_dofs; /** - * Array to store the information, if a - * cell on some level has children or - * not. It is used by the refinement - * listeners as a persistent buffer during - * the refinement. + * Array to store the + * information, if a cell on + * some level has children or + * not. It is used by the + * refinement listeners as a + * persistent buffer during the + * refinement. */ std::vector *> has_children; -- 2.39.5