]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Remove write_multigrid flag from DXFLAGS.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Fri, 15 Jul 2005 15:03:03 +0000 (15:03 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Fri, 15 Jul 2005 15:03:03 +0000 (15:03 +0000)
git-svn-id: https://svn.dealii.org/trunk@11145 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/include/base/data_out_base.h
deal.II/base/source/data_out_base.cc

index ce32fec728659a564efac619d381022aa6dd5cff..fd8ac652e5d915a742cd7c5cd3ee0e655a6c2ea0 100644 (file)
@@ -600,14 +600,6 @@ class DataOutBase
                                      */
     struct DXFlags 
     {
-                                        /**
-                                         * Write in multigrid format.
-                                         * This will be necessary to
-                                         * get streamlines right on
-                                         * locally refined grids.
-                                         */
-       bool write_multigrid;
-
                                         /**
                                          * Write neighbor information.
                                          */
@@ -616,8 +608,7 @@ class DataOutBase
                                         /**
                                          * Constructor.
                                          */
-       DXFlags (const bool write_multigrid = false,
-                const bool write_neighbors = false);
+       DXFlags (const bool write_neighbors = false);
         
                                         /**
                                          * Declare all flags with name
index 22a55ac5df6919b33a9e7b996f56645e03318093..58710760280c9e7ae143187e2d9689830a476432 100644 (file)
@@ -133,17 +133,14 @@ DataOutBase::PovrayFlags::PovrayFlags (const bool smooth,
 {}
 
 
-DataOutBase::DXFlags::DXFlags (const bool write_multigrid,
-                              const bool write_neighbors)
+DataOutBase::DXFlags::DXFlags (const bool write_neighbors)
                 :
-               write_multigrid(write_multigrid),
                write_neighbors(write_neighbors)
 {}
 
 
 void DataOutBase::DXFlags::declare_parameters (ParameterHandler &prm)
 {
-  prm.declare_entry ("Write multigrid", "true", Patterns::Bool());
   prm.declare_entry ("Write neighbors", "true",
                      Patterns::Bool(),
                      "A boolean field indicating whether neighborship "
@@ -155,7 +152,6 @@ void DataOutBase::DXFlags::declare_parameters (ParameterHandler &prm)
 
 void DataOutBase::DXFlags::parse_parameters (ParameterHandler &prm)
 {
-  write_multigrid = prm.get_bool ("Write multigrid");
   write_neighbors = prm.get_bool ("Write neighbors");
 }
 

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.