Rename option to EnableDamarisOutputCollective.

This commit is contained in:
Atgeirr Flø Rasmussen
2022-10-10 14:28:09 +02:00
committed by Elyes Ahmed
parent 066897bbf9
commit c1b3c5e973
7 changed files with 28 additions and 30 deletions

View File

@@ -434,23 +434,22 @@ struct EnableEclOutput<TypeTag,TTag::EclBaseProblem> {
//! Enable the Damaris output by default
template<class TypeTag>
struct EnableDamarisOutput<TypeTag, TTag::EclBaseProblem> {
static constexpr bool value = false; };
struct EnableDamarisOutput<TypeTag, TTag::EclBaseProblem> {
static constexpr bool value = false;
};
// If Damaris is available, write specific variable output in parallel
template<class TypeTag>
struct EnableDamarisOutputCollective<TypeTag, TTag::EclBaseProblem> {
static constexpr bool value = true;
};
//! By default, write the Damaris output using separate core
//!
//! This has only an effect if EnableVtkOutput is true
// If available, write the ECL output in a non-blocking manner
template<class TypeTag>
struct EnableAsyncEclOutput<TypeTag, TTag::EclBaseProblem> {
static constexpr bool value = true;
};
// If Damaris is available, write specific variable output in parallel
template<class TypeTag>
struct EnableAsyncDamarisOutput<TypeTag, TTag::EclBaseProblem> {
static constexpr bool value = false;
};
// Write ESMRY file for fast loading of summary data
template<class TypeTag>
struct EnableEsmry<TypeTag, TTag::EclBaseProblem> {