From 3dd8b45cfb8136dc543949fe30bff6b0b63d5921 Mon Sep 17 00:00:00 2001
From: Wolfgang Bangerth <bangerth@colostate.edu>
Date: Thu, 6 Aug 2020 16:59:44 -0600
Subject: [PATCH] Fix bug in DataPostprocessorTensor.

Specifically, the class currently states that the components it outputs are scalars,
when the whole intent of the class is of course to output its result as a tensor
field.
---
 source/numerics/data_postprocessor.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/numerics/data_postprocessor.cc b/source/numerics/data_postprocessor.cc
index 3fa5f63854..791ef72ec3 100644
--- a/source/numerics/data_postprocessor.cc
+++ b/source/numerics/data_postprocessor.cc
@@ -166,7 +166,7 @@ std::vector<DataComponentInterpretation::DataComponentInterpretation>
 DataPostprocessorTensor<dim>::get_data_component_interpretation() const
 {
   return std::vector<DataComponentInterpretation::DataComponentInterpretation>(
-    dim * dim, DataComponentInterpretation::component_is_scalar);
+    dim * dim, DataComponentInterpretation::component_is_part_of_tensor);
 }
 
 
-- 
2.39.5