Classes | |
struct | OutputDirectoryExists |
Exception class that is thrown, if the requested output directory already exists and -f was not specified on the command line. More... | |
struct | OutputDirectoryOutOfIds |
Exception class that is thrown, if no new output path can be generated (there is a directory name for each positive integer value) More... | |
Functions | |
void | usage (const int rc, const std::string &progname) |
Prints usage information and exits the program. More... | |
void | print_disclaimer () |
Print the disclaimer. More... | |
std::filesystem::path | default_output_path () |
void | ensure_path_is_valid (const std::filesystem::path &path) |
Ensures the output path is valid. More... | |
ScatterActionsFinder | actions_finder_for_dump (Configuration &configuration) |
Prepares ActionsFinder for cross-section and reaction dumps. More... | |
void | check_for_unused_config_values (const Configuration &configuration) |
Checks if there are unused config values. More... | |
void | ignore_simulation_config_values (Configuration &configuration) |
Remove all config values that are only needed for simulations. More... | |
void smash::anonymous_namespace{smash.cc}::usage | ( | const int | rc, |
const std::string & | progname | ||
) |
Prints usage information and exits the program.
[out] | rc | Exit status to return |
[in] | progname | Name of the program |
usage() is called when either the --help
or -h
command line options are given to the program; in this case, the exit status is EXIT_SUCCESS, or when an unknown option is given; in this case, the exit status is EXIT_FAIL.
Definition at line 139 of file smash.cc.
void smash::anonymous_namespace{smash.cc}::print_disclaimer | ( | ) |
std::filesystem::path smash::anonymous_namespace{smash.cc}::default_output_path | ( | ) |
void smash::anonymous_namespace{smash.cc}::ensure_path_is_valid | ( | const std::filesystem::path & | path | ) |
Ensures the output path is valid.
OutputDirectoryExists | if the Output directory already exists. |
[in] | path | The output path to be written to |
Definition at line 298 of file smash.cc.
ScatterActionsFinder smash::anonymous_namespace{smash.cc}::actions_finder_for_dump | ( | Configuration & | configuration | ) |
Prepares ActionsFinder for cross-section and reaction dumps.
[in,out] | configuration | Necessary parameters to switch reactions on/off |
ScatterActionsFinder
. Definition at line 320 of file smash.cc.
void smash::anonymous_namespace{smash.cc}::check_for_unused_config_values | ( | const Configuration & | configuration | ) |
Checks if there are unused config values.
Definition at line 329 of file smash.cc.
void smash::anonymous_namespace{smash.cc}::ignore_simulation_config_values | ( | Configuration & | configuration | ) |
Remove all config values that are only needed for simulations.
This is useful when checking for unused config value when SMASH only outputs cross sections, resonance properties or possible reactions.
Definition at line 343 of file smash.cc.