24 static constexpr
int LMain = LogArea::Main::id;
27 const std::vector<std::string> &);
35 const std::string &config_file,
const std::string &particles_file,
36 const std::string &decaymodes_file,
37 const std::vector<std::string> &extra_config) {
42 particles_file, decaymodes_file, configuration);
48 const std::string &tabulations_dir) {
57 " create ParticleType and DecayModes");
59 const std::string decaymodes_string =
67 hash_context.
update(version);
68 hash_context.
update(particles_string);
69 hash_context.
update(decaymodes_string);
70 const auto hash = hash_context.
finalize();
76 const std::string &tabulations_dir) {
77 logg[
LMain].info(
"Tabulating cross section integrals...");
78 std::filesystem::path tabulations_path(tabulations_dir);
79 if (!tabulations_path.empty()) {
81 std::filesystem::create_directories(tabulations_path);
82 logg[
LMain].info() <<
"Tabulations path: " << tabulations_path;
88 const std::string &config_file,
89 const std::vector<std::string> &extra_config) {
91 std::filesystem::path config_path(config_file);
93 config_path.filename());
96 for (
const auto &config : extra_config) {
103 const std::string conf_tag = LogArea::Configuration::textual();
104 const std::string main_tag = LogArea::Main::textual();
106 conf_tag.size() > main_tag.size() ? conf_tag.size() : main_tag.size();
114 throw std::runtime_error(
"Validation of SMASH input failed.");
122 if (!logger_config.is_empty()) {
129 const std::string &particles_file,
const std::string &decaymodes_file,
132 std::filesystem::path particles_path(particles_file);
133 std::filesystem::path decaymodes_path(decaymodes_file);
134 auto particles_and_decays =
139 !particles_path.empty()) {
141 "Ambiguity: particles from external file ", particles_path,
142 " requested, but there is also particle list in the config."
143 " Using particles from ",
147 !particles_path.empty()) {
152 !decaymodes_path.empty()) {
154 "Ambiguity: decaymodes from external file ", decaymodes_path,
155 " requested, but there is also decaymodes list in the config."
156 " Using decaymodes from",
160 !decaymodes_path.empty()) {
Interface to the SMASH configuration files.
void set_value(Key< U > key, T &&value)
Overwrite the value of the YAML node corresponding to the specified key.
void merge_yaml(const std::string &yaml)
Merge the configuration in yaml into the existing tree.
Configuration extract_sub_configuration(KeyLabels section, Configuration::GetEmpty empty_if_not_existing=Configuration::GetEmpty::No)
Create a new configuration from a then-removed section of the present object.
void enclose_into_section(KeyLabels section)
Enclose the configuration into the given section.
bool has_value(const Key< T > &key) const
Return whether there is a non-empty value behind the requested key (which is supposed not to refer to...
Is validate(bool full_validation=true) const
Validate content of configuration in terms of YAML keys.
T take(const Key< T > &key)
The default interface for SMASH to read configuration values.
static void load_decaymodes(const std::string &input)
Loads the DecayModes map as described in the input string.
static void tabulate_integrals(sha256::Hash hash, const std::filesystem::path &tabulations_path)
Tabulate all relevant integrals.
static void check_consistency()
static void create_type_list(const std::string &particles)
Initialize the global ParticleType list (list_all) from the given input data.
void update(uint8_t const *buffer, size_t buffer_size)
Add data to the SHA256 context.
Hash finalize()
Performs the final calculation of the hash and returns the digest (32 byte buffer containing 256bit h...
#define SMASH_SOURCE_LOCATION
Hackery that is required to output the location in the source code where the log statement occurs.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
void set_default_loglevel(einhard::LogLevel level)
Set the default log level (what will be returned from subsequent default_loglevel calls).
void create_all_loggers(Configuration config)
Called from main() right after the Configuration object is fully set up to create all logger objects ...
std::array< uint8_t, HASH_SIZE > Hash
A SHA256 hash.
std::string hash_to_string(Hash hash)
Convert a SHA256 hash to a hexadecimal string.
std::string fill_both(const std::string &s, size_t width, char fill=' ')
Fill string with characters at both sides until the given width is reached.
void initialize_particles_decays_and_tabulations(Configuration &configuration, const std::string &version, const std::string &tabulations_dir={})
Wrapper over a function that initializes the particles and decays from the given configuration,...
static void do_minimal_loggers_setup_for_config_validation()
static void read_particles_and_decaymodes_files_setting_keys_in_configuration(const std::string &, const std::string &, Configuration &)
void tabulate_resonance_integrals(const sha256::Hash &hash, const std::string &tabulations_dir)
Tabulate the resonance integrals.
Configuration setup_config_and_logging(const std::string &config_file, const std::string &particles_file={}, const std::string &decaymodes_file={}, const std::vector< std::string > &extra_config={})
Set up configuration and logging from input files and extra config.
static Configuration create_configuration(const std::string &, const std::vector< std::string > &)
static void setup_logging(Configuration &)
sha256::Hash initialize_particles_decays_and_return_hash(Configuration &configuration, const std::string &version)
Initialize the particles and decays from the given configuration.
std::pair< std::string, std::string > load_particles_and_decaymodes(const std::filesystem::path &particles_file, const std::filesystem::path &decaymodes_file)
Loads particles and decaymodes from provided files particles_file and decaymodes_file.
static constexpr int LMain
static void fully_validate_configuration(const Configuration &)