Merge pull request #3101 from joakim-hove/summary-config-fp

Add FieldProps argument to SummaryConfig constructor
This commit is contained in:
Joakim Hove 2021-03-08 12:25:25 +01:00 committed by GitHub
commit 9597a4be37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -227,7 +227,7 @@ void readDeck(int rank, std::string& deckFilename, std::unique_ptr<Opm::Deck>& d
setupMessageLimiter(schedule->operator[](0).message_limits(), "STDOUT_LOGGER");
}
if (!summaryConfig)
summaryConfig = std::make_unique<Opm::SummaryConfig>(*deck, *schedule,eclipseState->getTableManager(),
summaryConfig = std::make_unique<Opm::SummaryConfig>(*deck, *schedule, eclipseState->fieldProps(), eclipseState->getTableManager(),
eclipseState->aquifer(), *parseContext, *errorGuard);
Opm::checkConsistentArrayDimensions(*eclipseState, *schedule, *parseContext, *errorGuard);