Helper function that creates the oscar output with the format selected by create_oscar_output.
895 return std::make_unique<OscarOutput<ASCII, Contents>>(path, name,
898 if (modern_format && extended_format) {
899 return std::make_unique<OscarOutput<OscarFormat2013Extended, Contents>>(
901 }
else if (modern_format && !extended_format) {
902 return std::make_unique<OscarOutput<OscarFormat2013, Contents>>(path,
904 }
else if (!modern_format && !extended_format) {
905 return std::make_unique<OscarOutput<OscarFormat1999, Contents>>(path,
909 logg[
LOutput].warn() <<
"There is no extended Oscar1999 format, creating "
910 "a regular Oscar1999 output instead.";
911 return std::make_unique<OscarOutput<OscarFormat1999, Contents>>(path,
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
static constexpr int LOutput