From: bangerth Date: Thu, 27 Jul 2006 15:01:37 +0000 (+0000) Subject: Reindent file X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edc04bf1bbabfbbd49bf96b4bedee0e248db4074;p=dealii-svn.git Reindent file git-svn-id: https://svn.dealii.org/trunk@13442 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/dofs/dof_handler.h b/deal.II/deal.II/include/dofs/dof_handler.h index 79d2363c7b..e2713aeb3f 100644 --- a/deal.II/deal.II/include/dofs/dof_handler.h +++ b/deal.II/deal.II/include/dofs/dof_handler.h @@ -608,7 +608,7 @@ class DoFHandler : public Subscriptor * Return an iterator pointing to the last * line of the level @p level, used or not. - */ + */ raw_line_iterator last_raw_line (const unsigned int level) const; /** @@ -705,7 +705,7 @@ class DoFHandler : public Subscriptor * Return an iterator pointing to the last * quad of the level @p level, used or not. - */ + */ raw_quad_iterator last_raw_quad (const unsigned int level) const; /** @@ -806,7 +806,7 @@ class DoFHandler : public Subscriptor * Return an iterator pointing to the last * hex of the level @p level, used or not. - */ + */ raw_hex_iterator last_raw_hex (const unsigned int level) const; @@ -1096,17 +1096,22 @@ class DoFHandler : public Subscriptor const unsigned int local_index) const; /** - * Return the @p i-th dof-index. This function calls - * the respective function of DoFObjects. + * Return the @p i-th + * dof-index. This function + * calls the respective function + * of DoFObjects. */ template unsigned int get_dof_index (const unsigned int obj_level, const unsigned int obj_index, const unsigned int fe_index, const unsigned int local_index) const; + /** - * Set the @p i-th dof-index. This function calls - * the respective function of DoFObjects. + * Set the @p i-th + * dof-index. This function + * calls the respective function + * of DoFObjects. */ template void set_dof_index (const unsigned int obj_level, @@ -1114,16 +1119,21 @@ class DoFHandler : public Subscriptor const unsigned int fe_index, const unsigned int local_index, const unsigned int global_index) const; - /** - * number of active fe-indices, calls the respective - * function in DoFObjects - */ + + /** + * Number of active fe-indices, + * calls the respective + * function in DoFObjects + */ template unsigned int n_active_fe_indices (const unsigned int obj_level, const unsigned int obj_index) const; + /** - * return, wether fe-index is an active fe, calls the - * respective function in DoFObjects + * Return, wether fe-index is an + * active fe, calls the + * respective function in + * DoFObjects */ template bool fe_index_is_active (const unsigned int obj_level, @@ -1131,26 +1141,38 @@ class DoFHandler : public Subscriptor const unsigned int fe_index) const; /** - * 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; + /** + * Space to store DoF numbers of + * faces. They are not stored in + * levels since faces + * are not organized + * hierarchically, but in a flat + * array. + */ internal::DoFHandler::DoFFaces * faces; + /** - * 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; + /* * Make accessor objects friends. */