From: Wolfgang Bangerth Date: Wed, 7 Mar 2001 17:59:43 +0000 (+0000) Subject: Indentation etc. X-Git-Tag: v8.0.0~19612 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c97422281b74b74306b8c417b8fe7c75940955c;p=dealii.git Indentation etc. git-svn-id: https://svn.dealii.org/trunk@4159 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe.h b/deal.II/deal.II/include/fe/fe.h index 28e4038147..2a86519a75 100644 --- a/deal.II/deal.II/include/fe/fe.h +++ b/deal.II/deal.II/include/fe/fe.h @@ -43,7 +43,7 @@ template class MatrixCreator; * @ref{FEValues}. Even for evaluation on the unit cell, you will need * a triangulation containing that single cell. * - * @author Wolfgang Bangerth, Guido Kanschat, 1998, 2000 + * @author Wolfgang Bangerth, Guido Kanschat, Ralf Hartmann, 1998, 2000, 2001 */ template class FiniteElement : public FiniteElementBase @@ -176,27 +176,39 @@ class FiniteElement : public FiniteElementBase * This function is needed by the * constructors of @p{FESystem}. */ - virtual FiniteElement *clone() const =0; + virtual FiniteElement *clone() const = 0; /** * Prepare internal data * structures and fill in values - * independent of the cell. + * independent of the + * cell. Returns a pointer to an + * object of which the caller of + * this function then has to + * assume ownership (which + * includes destruction when it + * is no more needed). */ virtual typename Mapping::InternalDataBase* - get_data (const UpdateFlags, - const Mapping& mapping, + get_data (const UpdateFlags flags, + const Mapping &mapping, const Quadrature &quadrature) const = 0; /** * Prepare internal data * structure for transformation * of faces and fill in values - * independent of the cell. + * independent of the + * cell. Returns a pointer to an + * object of which the caller of + * this function then has to + * assume ownership (which + * includes destruction when it + * is no more needed). */ virtual typename Mapping::InternalDataBase* - get_face_data (const UpdateFlags flags, - const Mapping& mapping, + get_face_data (const UpdateFlags flags, + const Mapping &mapping, const Quadrature &quadrature) const; /** @@ -204,11 +216,16 @@ class FiniteElement : public FiniteElementBase * structure for transformation * of children of faces and fill * in values independent of the - * cell. + * cell. Returns a pointer to an + * object of which the caller of + * this function then has to + * assume ownership (which + * includes destruction when it + * is no more needed). */ virtual typename Mapping::InternalDataBase* - get_subface_data (const UpdateFlags flags, - const Mapping& mapping, + get_subface_data (const UpdateFlags flags, + const Mapping &mapping, const Quadrature &quadrature) const; /** @@ -223,11 +240,11 @@ class FiniteElement : public FiniteElementBase * called for the same cell first! */ virtual void - fill_fe_values (const Mapping &mapping, + fill_fe_values (const Mapping &mapping, const DoFHandler::cell_iterator &cell, const Quadrature &quadrature, - Mapping::InternalDataBase &mapping_internal, - Mapping::InternalDataBase &fe_internal, + Mapping::InternalDataBase &mapping_internal, + Mapping::InternalDataBase &fe_internal, FEValuesData &data) const = 0; /** @@ -242,13 +259,13 @@ class FiniteElement : public FiniteElementBase * called for the same cell first! */ virtual void - fill_fe_face_values (const Mapping &mapping, + fill_fe_face_values (const Mapping &mapping, const DoFHandler::cell_iterator &cell, const unsigned int face_no, const Quadrature &quadrature, - Mapping::InternalDataBase &mapping_internal, - Mapping::InternalDataBase &fe_internal, - FEValuesData &data) const = 0; + Mapping::InternalDataBase &mapping_internal, + Mapping::InternalDataBase &fe_internal, + FEValuesData &data) const = 0; /** * Fill the fields of @@ -262,14 +279,14 @@ class FiniteElement : public FiniteElementBase * called for the same cell first! */ virtual void - fill_fe_subface_values (const Mapping &mapping, + fill_fe_subface_values (const Mapping &mapping, const DoFHandler::cell_iterator &cell, const unsigned int face_no, const unsigned int sub_no, const Quadrature &quadrature, - typename Mapping::InternalDataBase &mapping_internal, - typename Mapping::InternalDataBase &fe_internal, - FEValuesData &data) const = 0; + typename Mapping::InternalDataBase &mapping_internal, + typename Mapping::InternalDataBase &fe_internal, + FEValuesData &data) const = 0; /** * Declare some other classes as