From c7b68482f3e9243d894bd26f90eefd04e3677619 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Tue, 25 Aug 2020 16:33:30 +0200 Subject: [PATCH] Extract UDQ eval to separate function call --- ebos/eclwriter.hh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ebos/eclwriter.hh b/ebos/eclwriter.hh index 1e6ce7ecb..e86693f4d 100644 --- a/ebos/eclwriter.hh +++ b/ebos/eclwriter.hh @@ -47,6 +47,7 @@ #include #include #include +#include #include #include @@ -314,6 +315,10 @@ public: miscSummaryData, regionData, blockData); + + const auto& udq_config = schedule().getUDQConfig(reportStepNum); + udq_config.eval( summaryState() ); + buffer = summaryState().serialize(); }