From 70db2b05daac695074878e071bd5bde3f81d4d5c Mon Sep 17 00:00:00 2001 From: kanschat Date: Tue, 6 Sep 2011 16:33:12 +0000 Subject: [PATCH] Use only files needed and add documantation git-svn-id: https://svn.dealii.org/trunk@24275 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-12/step-12.cc | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-12/step-12.cc b/deal.II/examples/step-12/step-12.cc index b1a1ab8c2d..bb01119068 100644 --- a/deal.II/examples/step-12/step-12.cc +++ b/deal.II/examples/step-12/step-12.cc @@ -59,10 +59,31 @@ #include // Here come the new include files - // for using the MeshWorker framework: + // for using the MeshWorker + // framework. The first contains the + // class + // MeshWorker::DoFInfo, + // which provides local integrators + // with a mapping between local and + // global degrees of freedom. It + // stores the results of local + // integrals as well in its base + // class Meshworker::LocalResults. + // In the second of these files, we + // find an object of type + // MeshWorker::IntegrationInfo, which + // is mostly a wrapper around a group + // of FEValues objects. The file + // meshworker/simple.h + // contains classes assembling + // locally integrated data into a + // global system containing only a + // single matrix. Finally, we will + // need the file that runs the loop + // over all mesh cells and faces. #include #include -#include +#include #include // Like in all programs, we finish -- 2.39.5