Version: SMASH-3.2
smash::anonymous_namespace{oscaroutput.cc} Namespace Reference

Functions

template<int Contents>
std::unique_ptr< OutputInterfacecreate_select_format (bool modern_format, const std::filesystem::path &path, const OutputParameters &out_par, const std::string &name, const bool custom_format=false)
 Helper function that creates the oscar output with the format selected by create_oscar_output (except for dileptons and photons). More...
 

Function Documentation

◆ create_select_format()

template<int Contents>
std::unique_ptr<OutputInterface> smash::anonymous_namespace{oscaroutput.cc}::create_select_format ( bool  modern_format,
const std::filesystem::path &  path,
const OutputParameters out_par,
const std::string &  name,
const bool  custom_format = false 
)

Helper function that creates the oscar output with the format selected by create_oscar_output (except for dileptons and photons).

Template Parameters
ContentsDetermines what information will be written to the output
Parameters
[in]modern_formatUse the 1999 or 2013 format
[in]pathPath of output
[in]out_parOutput parameters that hold the output configuration
[in]name(File)name of ouput
[in]custom_formatWhether the output has user-defined quantities
Returns
Unique pointer to oscar output

Definition at line 861 of file oscaroutput.cc.

864  {
865  bool extended_format = (Contents & OscarInteractions) ? out_par.coll_extended
866  : out_par.part_extended;
867  if (custom_format) {
868  const auto &quantities = (Contents & OscarInteractions)
869  ? out_par.quantities.at("Collisions")
870  : out_par.quantities.at("Particles");
871  return std::make_unique<OscarOutput<ASCII, Contents>>(path, name,
872  quantities);
873  } else if (modern_format && extended_format) {
874  return std::make_unique<OscarOutput<OscarFormat2013Extended, Contents>>(
875  path, name);
876  } else if (modern_format && !extended_format) {
877  return std::make_unique<OscarOutput<OscarFormat2013, Contents>>(path, name);
878  } else if (!modern_format && !extended_format) {
879  return std::make_unique<OscarOutput<OscarFormat1999, Contents>>(path, name);
880  } else {
881  // Only remaining possibility: (!modern_format && extended_format)
882  logg[LOutput].warn() << "Creating Oscar output: "
883  << "There is no extended Oscar1999 format.";
884  return std::make_unique<OscarOutput<OscarFormat1999, Contents>>(path, name);
885  }
886 }
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
@ OscarInteractions
store interaction information (write_interaction)
Definition: oscaroutput.h:47
static constexpr int LOutput