DOpE
dataout_wrapper.h
Go to the documentation of this file.
1 
24 #ifndef DOPE_DATAOUT_H_
25 #define DOPE_DATAOUT_H_
26 
27 #include <deal.II/numerics/data_out.h>
28 #include <deal.II/dofs/dof_handler.h>
29 #include <deal.II/hp/dof_handler.h>
30 //#include <deal.II/multigrid/mg_dof_handler.h>
31 
32 namespace DOpEWrapper
33 {
49  template <int dim, template<int, int> class DH = dealii::DoFHandler>
50  class DataOut : public dealii::DataOut<dim, DH<dim,dim> >
51  {
52  public:
54  {
55  }
56  };
57 //TODO: This makes no sense if MGDoFHandler is no longer present
58 // //Special treatment of MGDoFHandler...
59 // template <int dim>
60 // class DataOut<dim, dealii::MGDoFHandler> : public dealii::DataOut<dim, dealii::DoFHandler<dim,dim> >
61 // {
62 // public:
63 // DataOut()
64 // {
65 // }
66 // };
67 
68 }//Endof Namespace DOpEWrapper
69 #endif
Definition: dataout_wrapper.h:50
DataOut()
Definition: dataout_wrapper.h:53