From 963833408f11a7aa5299455dbd0c0501e3d5b1e9 Mon Sep 17 00:00:00 2001 From: kanschat Date: Mon, 13 Jan 2014 12:13:32 +0000 Subject: [PATCH] add two useful fields git-svn-id: https://svn.dealii.org/trunk@32199 0785d39b-7218-0410-832d-ea1e28bc413d --- .../deal.II/meshworker/local_integrator.h | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/deal.II/include/deal.II/meshworker/local_integrator.h b/deal.II/include/deal.II/meshworker/local_integrator.h index 2516135024..f3a0595f80 100644 --- a/deal.II/include/deal.II/meshworker/local_integrator.h +++ b/deal.II/include/deal.II/meshworker/local_integrator.h @@ -22,6 +22,9 @@ #include #include +#include +#include + DEAL_II_NAMESPACE_OPEN namespace MeshWorker @@ -106,6 +109,26 @@ namespace MeshWorker */ bool use_face; + /** + * The names of the input vectors. If this vector is nonempty, it + * can be used by application programs to automatically select + * and verify the input vectors used for integration. + * + * @note This variable is currently not used by the library, but + * it is provided to help develop application programs. + */ + std::vector input_vector_names; + + /** + * The names of the results produced. If this vector is nonempty, + * it can be used by application programs to automatically assign + * names to output values and/or verify the names of vectors. + * + * @note This variable is currently not used by the library, but + * it is provided to help develop application programs. + */ + std::vector output_names; + /** * This error is thrown if one of the virtual functions cell(), * boundary(), or face() is called without being overloaded in a -- 2.39.5