From 7076b8418f4078e7938c17b51da2e157ce2b3b01 Mon Sep 17 00:00:00 2001 From: kanschat Date: Mon, 3 May 2010 22:15:00 +0000 Subject: [PATCH] use the generally used and more accurate structdim instead of celldim git-svn-id: https://svn.dealii.org/trunk@21058 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/dof_accessor.h | 12 +++++------ deal.II/deal.II/include/grid/tria_accessor.h | 12 +++++------ .../include/multigrid/mg_dof_accessor.h | 20 +++++++++---------- .../multigrid/mg_dof_iterator_selector.h | 2 +- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/deal.II/deal.II/include/dofs/dof_accessor.h b/deal.II/deal.II/include/dofs/dof_accessor.h index d5266997dc..dcddcae4b4 100644 --- a/deal.II/deal.II/include/dofs/dof_accessor.h +++ b/deal.II/deal.II/include/dofs/dof_accessor.h @@ -66,11 +66,11 @@ namespace internal /** * This is a switch class which only declares a @p typedef. It is meant to * determine which class a DoFAccessor class is to be derived from. By - * default, DoFAccessor@ derives from the + * default, DoFAccessor@ derives from the * typedef in the general - * Inheritance@ class, which is - * TriaAccessor@, but if - * celldim==dim, then the specialization + * Inheritance@ class, which is + * TriaAccessor@, but if + * structdim==dim, then the specialization * Inheritance@ is used which declares * its local type to be CellAccessor@. Therefore, the * inheritance is automatically chosen to be from CellAccessor if the object @@ -80,7 +80,7 @@ namespace internal * @ingroup Accessors * @author Wolfgang Bangerth, 1999 */ - template + template struct Inheritance { /** @@ -88,7 +88,7 @@ namespace internal * See the full documentation for * more information. */ - typedef dealii::TriaAccessor BaseClass; + typedef dealii::TriaAccessor BaseClass; }; diff --git a/deal.II/deal.II/include/grid/tria_accessor.h b/deal.II/deal.II/include/grid/tria_accessor.h index 9c4657b980..705777b361 100644 --- a/deal.II/deal.II/include/grid/tria_accessor.h +++ b/deal.II/deal.II/include/grid/tria_accessor.h @@ -113,7 +113,7 @@ namespace internal } } -template class TriaAccessor; +template class TriaAccessor; template class TriaAccessor<0, dim, spacedim>; // note: the file tria_accessor.templates.h is included at the end of @@ -1045,7 +1045,7 @@ class TriaAccessor : public TriaAccessorBase * boundary. Obviously, the use of this * function is only possible for * dim@>structdim; however, for - * dim==celldim, an object is a + * dim==structdim, an object is a * cell and the CellAccessor class offers * another possibility to determine * whether a cell is at the boundary or @@ -1322,7 +1322,7 @@ class TriaAccessor : public TriaAccessorBase * * It is only possible to set the * line_orientation of faces in 3d - * (i.e. celldim==2 && + * (i.e. structdim==2 && * dim==3). */ void set_line_orientation (const unsigned int line, @@ -1357,7 +1357,7 @@ class TriaAccessor : public TriaAccessorBase * * It is only possible to set the * face_orientation of cells in 3d - * (i.e. celldim==3 && + * (i.e. structdim==3 && * dim==3). */ void set_face_flip (const unsigned int face, @@ -1370,7 +1370,7 @@ class TriaAccessor : public TriaAccessorBase * * It is only possible to set the * face_orientation of cells in 3d - * (i.e. celldim==3 && + * (i.e. structdim==3 && * dim==3). */ void set_face_rotation (const unsigned int face, @@ -1394,7 +1394,7 @@ class TriaAccessor : public TriaAccessorBase * Set the @p RefinementCase this * TriaObject is refined with. * Not defined for - * celldim=1 as lines + * structdim=1 as lines * are always refined resulting * in 2 children lines (isotropic * refinement). diff --git a/deal.II/deal.II/include/multigrid/mg_dof_accessor.h b/deal.II/deal.II/include/multigrid/mg_dof_accessor.h index 01a42d0fa0..12f2feffed 100644 --- a/deal.II/deal.II/include/multigrid/mg_dof_accessor.h +++ b/deal.II/deal.II/include/multigrid/mg_dof_accessor.h @@ -22,7 +22,7 @@ DEAL_II_NAMESPACE_OPEN template class MGDoFHandler; -template class MGDoFAccessor; +template class MGDoFAccessor; namespace internal { @@ -44,17 +44,17 @@ namespace internal /** * This is a switch class which only declares a @p typedef. It is meant to * determine which class aMGDoFAccessor class is to be derived - * from. By default, MGDoFAccessor derives from - * the @p typedef in the general MGDoFAccessor_Inheritance - * class, which is DoFAccessor, - * but if celldim==dim, then the specialization MGDoFAccessor_Inheritance + * from. By default, MGDoFAccessor derives from + * the @p typedef in the general MGDoFAccessor_Inheritance + * class, which is DoFAccessor, + * but if structdim==dim, then the specialization MGDoFAccessor_Inheritance * is used which declares its local type to be DoFCellAccessor. Therefore, * the inheritance is automatically chosen to be from @p DoFCellAccessor if the * object under consideration has full dimension, i.e. constitutes a cell. * * @author Wolfgang Bangerth, 1999 */ - template + template struct Inheritance { /** @@ -62,7 +62,7 @@ namespace internal * See the full documentation for * more information. */ - typedef dealii::DoFAccessor > BaseClass; + typedef dealii::DoFAccessor > BaseClass; }; @@ -71,9 +71,9 @@ namespace internal * meant to determine which class a DoFAccessor class is to be * derived from. By default, DoFAccessor * derives from the @p typedef in the general - * DoFAccessor_Inheritance class, which is - * TriaAccessor, but if - * celldim==dim, then the specialization + * DoFAccessor_Inheritance class, which is + * TriaAccessor, but if + * structdim==dim, then the specialization * TriaAccessor is used which declares its * local type to be CellAccessor. Therefore, the * inheritance is automatically chosen to be from @p CellAccessor if diff --git a/deal.II/deal.II/include/multigrid/mg_dof_iterator_selector.h b/deal.II/deal.II/include/multigrid/mg_dof_iterator_selector.h index 2d4a599410..bcbdc8fbfc 100644 --- a/deal.II/deal.II/include/multigrid/mg_dof_iterator_selector.h +++ b/deal.II/deal.II/include/multigrid/mg_dof_iterator_selector.h @@ -19,7 +19,7 @@ DEAL_II_NAMESPACE_OPEN -template class MGDoFAccessor; +template class MGDoFAccessor; template class MGDoFCellAccessor; template class InvalidAccessor; -- 2.39.5