]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Leave two urgent TODOs for this class.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 14 Nov 2012 03:25:14 +0000 (03:25 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 14 Nov 2012 03:25:14 +0000 (03:25 +0000)
git-svn-id: https://svn.dealii.org/trunk@27534 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/include/deal.II/meshworker/vector_info.h

index e768b7a929510bc7de29a88c6ba815a009188205..5f5920e5edfda58edcdde1a31d2debff2b815e55 100644 (file)
@@ -1,7 +1,7 @@
 //---------------------------------------------------------------------------
 //    $Id: mesh_worker_info.h 23936 2011-07-09 17:02:27Z kanschat $
 //
-//    Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 by the deal.II authors
+//    Copyright (C) 2012 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
 #include <deal.II/lac/block_indices.h>
 #include <deal.II/numerics/mesh_worker_info.h>
 
+//TODO[GK]: Remove the using directive
 using namespace dealii;
 
+//TODO[GK]: Provide any kind of documentation for this class and the one below...
 class VectorInfo
 {
   public:
@@ -28,12 +30,12 @@ class VectorInfo
                                      * selector.
                                      */
     void initialize_data(const NamedData<BlockVector<double>*>&data);
-    
+
     template<int dim, int spacedim>
     void reinit(const MeshWorker::DoFInfo<dim, spacedim>& i);
 
     BlockVector<double>& operator() (unsigned int i);
-    
+
   private:
     std::vector<BlockVector<double> > local_data;
                                       /**
@@ -42,7 +44,7 @@ class VectorInfo
                                        * values in quadrature
                                        * points.
                                        */
-    SmartPointer<const NamedData<BlockVector<double>*> > global_data;    
+    SmartPointer<const NamedData<BlockVector<double>*> > global_data;
 };
 
 
@@ -50,9 +52,9 @@ class VectorInfoBox
  {
    public:
      typedef VectorInfo CellInfo;
-     
+
      void initialize_data(const NamedData<BlockVector<double>*>&data);
-     
+
      template <int dim, class DOFINFO>
      void post_cell(const MeshWorker::DoFInfoBox<dim, DOFINFO>&)
        {}
@@ -60,7 +62,7 @@ class VectorInfoBox
      template <int dim, class DOFINFO>
      void post_faces(const MeshWorker::DoFInfoBox<dim, DOFINFO>&)
        {}
-     
+
      VectorInfo cell;
      VectorInfo boundary;
      VectorInfo face;
@@ -84,11 +86,11 @@ void
 VectorInfo::reinit(const MeshWorker::DoFInfo<dim, spacedim>& i)
 {
   const NamedData<BlockVector<double>*>& gd = *global_data;
-  
+
   for (unsigned int k=0;k<local_data.size();++k)
     {
       const BlockVector<double>& v = *gd(k);
-      
+
       local_data[k].reinit(i.block_info->local());
       for (unsigned int j=0;j<local_data[k].size();++j)
        local_data[k](j) = v(i.indices[j]);

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.