Version: SMASH-3.2
smash.cc
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2012-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 #include <getopt.h>
10 
11 #include <filesystem>
12 #include <set>
13 #include <sstream>
14 #include <vector>
15 
16 #include "smash/decaymodes.h"
17 #include "smash/experiment.h"
18 #include "smash/filelock.h"
19 #include "smash/random.h"
22 #include "smash/sha256.h"
23 #include "smash/stringfunctions.h"
24 /* build dependent variables */
25 #include "smash/config.h"
26 #include "smash/library.h"
27 
28 namespace smash {
29 
127 namespace {
139 void usage(const int rc, const std::string &progname) {
140  std::printf("\nUsage: %s [option]\n\n", progname.c_str());
141  std::printf(
142  " -h, --help usage information\n"
143  "\n"
144  " -i, --inputfile <file> path to input configuration file\n"
145  " (default: ./config.yaml)\n"
146  " -d, --decaymodes <file> override default decay modes from file\n"
147  " -p, --particles <file> override default particles from file\n"
148  "\n"
149  " -c, --config <YAML> specify config value overrides\n"
150  " (multiple -c arguments are supported)\n"
151  " -m, --modus <modus> shortcut for -c 'General: { Modus: <modus> "
152  "}'\n"
153  " -e, --endtime <time> shortcut for -c 'General: { End_Time: <time> "
154  "}'"
155  "\n"
156  "\n"
157  " -o, --output <dir> output directory (default: ./data/<runid>)\n"
158  " -l, --list-2-to-n list all possible 2->n reactions (with n>1)\n"
159  " -r, --resonance <pdg> dump width(m) and m*spectral function(m^2)"
160  " for resonance pdg\n"
161  " -s, --cross-sections <pdg1>,<pdg2>[,mass1,mass2[,plab1,...]] \n"
162  " dump all partial cross-sections of "
163  "pdg1 + pdg2 reactions versus sqrt(s).\n"
164  " -S, --cross-sections-fs <pdg1>,<pdg2>[,mass1,mass2[,plab1,...]] \n"
165  " dump an approximation of the final-state"
166  " cross-sections\n"
167  " of pdg1 + pdg2 reactions versus sqrt(s).\n"
168  " Contributions from strings are not considered"
169  " for the final state.\n"
170  " Masses are optional, by default pole masses"
171  " are used.\n"
172  " Note the required comma and no spaces.\n"
173  " -f, --force force overwriting files in the output "
174  "directory"
175  "\n"
176  " -x, --dump_iSS Dump particle table in iSS format\n"
177  " This format is used in MUSIC and CLVisc\n"
178  " relativistic hydro codes\n"
179  " -q, --quiet Supress disclaimer print-out\n"
180  " -n, --no-cache Don't cache integrals on disk\n"
181  " -v, --version\n\n");
182  std::exit(rc);
183 }
184 
187  std::cout
188  << "###################################################################"
189  << "############"
190  << "\n"
191  << "\n"
192  << " :::s.\n"
193  << " .... ''ss:: "
194  "ah:\n"
195  << " a::''. ..:sss "
196  ".HH.\n"
197  << " mss'.. ...s'm. sSA##As mAhh##hsh##s. .hA##ASa sS###As "
198  "hMAh##h.\n"
199  << " :a':'. .'':as sM#' .HHm''HMS''AMs mMA' .AMs aMA. "
200  "'HHa..HM:\n"
201  << " .a:s'. ..''ss 'h#H#S. mMm 'M#' .HH. 'MH. :MA 'h#H#S. "
202  "hMm :M#\n"
203  << " .::ss'. .... 'SMm .HH. SMa hMm sM#..mHMs 'AMa "
204  "'MH. SMa\n"
205  << " .s::' #SMASHh aMS .MH: HM: #MMMmMM. #SMASHh "
206  "aMS .MM.\n"
207  << "\n"
208  << "###################################################################"
209  << "############"
210  << "\n"
211  << " This is SMASH version: " << SMASH_VERSION << "\n"
212  << " Simulating Many Accelerated Strongly-interacting Hadrons"
213  << "\n"
214  << "\n"
215  << " Distributed under the GNU General Public License 3.0"
216  << " (GPLv3 or later)."
217  << "\n"
218  << " See LICENSE for details."
219  << "\n"
220  << " For the full list of contributors see the AUTHORS.md file."
221  << "\n"
222  << "\n"
223  << " When using SMASH, please cite"
224  << "\n"
225  << " J. Weil et al., Phys.Rev. C94 (2016) no.5, 054905"
226  << "\n"
227  << " together with the software DOI for the specific code version "
228  << "employed:"
229  << "\n"
230  << " https://doi.org/10.5281/zenodo.3484711"
231  << "\n"
232  << " In addition, if Pythia is used please cite"
233  << "\n"
234  << " C. Bierlich et al, SciPost Phys. Codebases 8 (2022)"
235  << "\n"
236  << " together with the Codebase release you used:"
237  << "\n"
238  << " https://doi.org/10.21468/SciPostPhysCodeb.8-r8.3"
239  << "\n"
240  << "\n"
241  << " Webpage: https://smash-transport.github.io"
242  << "\n"
243  << "\n"
244  << " Report issues at https://github.com/smash-transport/smash"
245  << "\n"
246  << " or contact us by email at elfner@itp.uni-frankfurt.de"
247  << "\n"
248  << "\n"
249  << "###################################################################"
250  << "############"
251  << "\n"
252  << "\n";
253 }
254 
260 struct OutputDirectoryExists : public std::runtime_error {
261  using std::runtime_error::runtime_error;
262 };
269 struct OutputDirectoryOutOfIds : public std::runtime_error {
270  using std::runtime_error::runtime_error;
271 };
272 
274 std::filesystem::path default_output_path() {
275  const std::filesystem::path p = std::filesystem::absolute("data");
276  if (!std::filesystem::exists(p)) {
277  return p / "0";
278  }
279  std::filesystem::path p2;
280  for (int id = 0; id < std::numeric_limits<int>::max(); ++id) {
281  p2 = p / std::to_string(id);
282  if (!std::filesystem::exists(p2)) {
283  break;
284  }
285  }
286  if (p == p2) {
287  throw OutputDirectoryOutOfIds("no unique data subdir ID left");
288  }
289  return p2;
290 }
291 
298 void ensure_path_is_valid(const std::filesystem::path &path) {
299  if (std::filesystem::exists(path)) {
300  if (!std::filesystem::is_directory(path)) {
301  throw OutputDirectoryExists("The given path (" + path.native() +
302  ") exists, but it is not a directory.");
303  }
304  } else {
305  if (!std::filesystem::create_directories(path)) {
306  throw OutputDirectoryExists(
307  "Race condition detected: The directory " + path.native() +
308  " did not exist a few cycles ago, but was created in the meantime by "
309  "a different process.");
310  }
311  }
312 }
313 
321  ExperimentParameters params = create_experiment_parameters(configuration);
322  params.use_monash_tune_default = false;
323  return ScatterActionsFinder(configuration, params);
324 }
325 
329 void check_for_unused_config_values(const Configuration &configuration) {
330  if (!configuration.is_empty()) {
331  throw std::runtime_error(
332  "The following configuration values were not used:\n" +
333  configuration.to_string());
334  }
335 }
336 
344  for (const auto &key : {InputKeys::particles, InputKeys::decaymodes}) {
345  if (configuration.has_value(key)) {
346  configuration.take(key);
347  }
348  }
349  for (const auto &section :
353  if (configuration.has_section(section)) {
354  configuration.extract_sub_configuration(section).clear();
355  }
356  }
357 }
358 
359 } // unnamed namespace
360 
361 } // namespace smash
362 
373 int main(int argc, char *argv[]) {
374  using namespace smash; // NOLINT(build/namespaces)
375 
376  constexpr option longopts[] = {
377  {"config", required_argument, 0, 'c'},
378  {"decaymodes", required_argument, 0, 'd'},
379  {"endtime", required_argument, 0, 'e'},
380  {"force", no_argument, 0, 'f'},
381  {"help", no_argument, 0, 'h'},
382  {"inputfile", required_argument, 0, 'i'},
383  {"modus", required_argument, 0, 'm'},
384  {"particles", required_argument, 0, 'p'},
385  {"output", required_argument, 0, 'o'},
386  {"list-2-to-n", no_argument, 0, 'l'},
387  {"resonance", required_argument, 0, 'r'},
388  {"cross-sections", required_argument, 0, 's'},
389  {"cross-sections-fs", required_argument, 0, 'S'},
390  {"dump-iSS", no_argument, 0, 'x'},
391  {"version", no_argument, 0, 'v'},
392  {"no-cache", no_argument, 0, 'n'},
393  {"quiet", no_argument, 0, 'q'},
394  {nullptr, 0, 0, 0}};
395 
396  // strip any path to progname
397  const std::string progname =
398  std::filesystem::path(argv[0]).filename().native();
399 
400  try {
401  bool force_overwrite = false;
402  std::filesystem::path output_path = default_output_path();
403  std::string input_path("./config.yaml"), particles, decaymodes;
404  std::vector<std::string> extra_config;
405  char *modus = nullptr, *end_time = nullptr, *pdg_string = nullptr,
406  *cs_string = nullptr;
407  bool list2n_activated = false;
408  bool resonance_dump_activated = false;
409  bool cross_section_dump_activated = false;
410  bool final_state_cross_sections = false;
411  bool particles_dump_iSS_format = false;
412  bool cache_integrals = true;
413  bool suppress_disclaimer = false;
414 
415  // parse command-line arguments
416  int opt;
417  while ((opt = getopt_long(argc, argv, "c:d:e:fhi:m:p:o:lr:s:S:xvnq",
418  longopts, nullptr)) != -1) {
419  switch (opt) {
420  case 'c':
421  extra_config.emplace_back(optarg);
422  break;
423  case 'd':
424  decaymodes = optarg;
425  break;
426  case 'f':
427  force_overwrite = true;
428  break;
429  case 'i':
430  input_path = optarg;
431  break;
432  case 'h':
433  usage(EXIT_SUCCESS, progname);
434  break;
435  case 'm':
436  modus = optarg;
437  break;
438  case 'p':
439  particles = optarg;
440  break;
441  case 'e':
442  end_time = optarg;
443  break;
444  case 'o':
445  output_path = optarg;
446  break;
447  case 'l':
448  list2n_activated = true;
449  suppress_disclaimer = true;
450  break;
451  case 'r':
452  resonance_dump_activated = true;
453  pdg_string = optarg;
454  suppress_disclaimer = true;
455  break;
456  case 'S':
457  final_state_cross_sections = true;
458  // fallthrough
459  case 's':
460  cross_section_dump_activated = true;
461  cs_string = optarg;
462  suppress_disclaimer = true;
463  break;
464  case 'x':
465  particles_dump_iSS_format = true;
466  suppress_disclaimer = true;
467  break;
468  case 'v':
469  std::printf(
470  "%s\n"
471 #ifdef GIT_BRANCH
472  "Branch : %s\n"
473 #endif
474  "System : %s\nCompiler : %s %s\n"
475  "Build : %s\nDate : %s\n",
476  SMASH_VERSION,
477 #ifdef GIT_BRANCH
478  GIT_BRANCH,
479 #endif
480  CMAKE_SYSTEM, CMAKE_CXX_COMPILER_ID, CMAKE_CXX_COMPILER_VERSION,
481  CMAKE_BUILD_TYPE, BUILD_DATE);
482  std::exit(EXIT_SUCCESS);
483  case 'n':
484  cache_integrals = false;
485  break;
486  case 'q':
487  suppress_disclaimer = true;
488  break;
489  default:
490  usage(EXIT_FAILURE, progname);
491  }
492  }
493 
494  // Abort if there are unhandled arguments left.
495  if (optind < argc) {
496  std::cout << argv[0] << ": invalid argument -- '" << argv[optind]
497  << "'\n";
498  usage(EXIT_FAILURE, progname);
499  }
500 
501  if (!suppress_disclaimer) {
503  }
504 
505  auto configuration = setup_config_and_logging(input_path, particles,
506  decaymodes, extra_config);
507 
509 
510  // Check output path
511  ensure_path_is_valid(output_path);
512  std::string tabulations_path;
513  if (cache_integrals) {
514  tabulations_path = output_path.has_parent_path()
515  ? output_path.parent_path().string()
516  : ".";
517  tabulations_path += "/tabulations";
518  } else {
519  tabulations_path = "";
520  }
521  const std::string version(SMASH_VERSION);
522 
523  if (list2n_activated) {
524  /* Print only 2->n, n > 1. Do not dump decays, which can be found in
525  * decaymodes.txt anyway */
526  configuration.merge_yaml("{Collision_Term: {Two_to_One: False}}");
527  initialize_particles_decays_and_tabulations(configuration, version,
528  tabulations_path);
529  auto scat_finder = actions_finder_for_dump(configuration);
530 
531  ignore_simulation_config_values(configuration);
532  check_for_unused_config_values(configuration);
533 
534  scat_finder.dump_reactions();
535  std::exit(EXIT_SUCCESS);
536  }
537  if (particles_dump_iSS_format) {
538  initialize_particles_decays_and_tabulations(configuration, version,
539  tabulations_path);
540  ParticleTypePtrList list;
541  list.clear();
542  for (const auto &ptype : ParticleType::list_all()) {
543  list.push_back(&ptype);
544  }
545  std::sort(list.begin(), list.end(),
547  return a->mass() < b->mass();
548  });
549  for (const ParticleTypePtr &ptype : list) {
550  if (ptype->pdgcode().is_lepton() || ptype->baryon_number() < 0) {
551  continue;
552  }
553  const auto &decay_modes = ptype->decay_modes();
554  const auto &modelist = decay_modes.decay_mode_list();
555  int ndecays = ptype->is_stable() ? 1 : modelist.size();
556  std::printf("%13i %s %10.5f %10.5f %5i %5i %5i %5i %5i %5i %5i %5i\n",
557  ptype->pdgcode().get_decimal(),
558  smash::utf8::fill_left(ptype->name(), 12, ' ').c_str(),
559  ptype->mass(), ptype->width_at_pole(),
560  ptype->pdgcode().spin_degeneracy(), ptype->baryon_number(),
561  ptype->strangeness(), ptype->pdgcode().charmness(),
562  ptype->pdgcode().bottomness(), ptype->isospin() + 1,
563  ptype->charge(), ndecays);
564  if (!ptype->is_stable()) {
565  for (const auto &decay : modelist) {
566  auto ptypes = decay->particle_types();
567  std::printf("%13i %13i %20.5f %13i %13i %13i %13i %13i\n",
568  ptype->pdgcode().get_decimal(), 2, decay->weight(),
569  ptypes[0]->pdgcode().get_decimal(),
570  ptypes[1]->pdgcode().get_decimal(), 0, 0, 0);
571  }
572  } else {
573  std::printf("%13i %13i %20.5f %13i %13i %13i %13i %13i\n",
574  ptype->pdgcode().get_decimal(), 1, 1.0,
575  ptype->pdgcode().get_decimal(), 0, 0, 0, 0);
576  }
577  }
578  std::exit(EXIT_SUCCESS);
579  }
580  if (resonance_dump_activated) {
581  // Ignore config values that don't make sense.
582  initialize_particles_decays_and_tabulations(configuration, version,
583  tabulations_path);
584  const auto _dummy = ExperimentBase::create(configuration, output_path);
585  ignore_simulation_config_values(configuration);
586  check_for_unused_config_values(configuration);
587 
588  PdgCode pdg(pdg_string);
589  const ParticleType &res = ParticleType::find(pdg);
591  std::exit(EXIT_SUCCESS);
592  }
593  if (cross_section_dump_activated) {
594  initialize_particles_decays_and_tabulations(configuration, version,
595  tabulations_path);
596  std::string arg_string(cs_string);
597  std::vector<std::string> args = split(arg_string, ',');
598  const unsigned int n_arg = args.size();
599  if (n_arg != 2 && n_arg != 4 && n_arg < 5) {
600  throw std::invalid_argument("-s usage: pdg1,pdg2[,m1,m2[,sqrts1,...]]");
601  }
602  PdgCode pdg_a(args[0]), pdg_b(args[1]);
603  const ParticleType &a = ParticleType::find(pdg_a);
604  const ParticleType &b = ParticleType::find(pdg_b);
605  if (n_arg < 4) {
606  for (unsigned int i = 0; i < 4 - n_arg; i++) {
607  args.push_back("");
608  }
609  }
610  double ma = (args[2] == "") ? a.mass() : std::stod(args[2]);
611  double mb = (args[3] == "") ? b.mass() : std::stod(args[3]);
612  if (a.is_stable() && args[2] != "" && std::stod(args[2]) != a.mass()) {
613  ma = a.mass();
614  std::cerr << "Warning: pole mass is used for stable particle "
615  << a.name() << " instead of " << args[2] << std::endl;
616  }
617  if (b.is_stable() && args[3] != "" && std::stod(args[3]) != b.mass()) {
618  mb = b.mass();
619  std::cerr << "Warning: pole mass is used for stable particle "
620  << b.name() << " instead of " << args[3] << std::endl;
621  }
622  const size_t plab_size = n_arg <= 4 ? 0 : n_arg - 4;
623  std::vector<double> plab;
624  plab.reserve(plab_size);
625  for (size_t i = 4; i < n_arg; i++) {
626  plab.push_back(std::stod(args.at(i)));
627  }
628  auto scat_finder = actions_finder_for_dump(configuration);
629 
630  ignore_simulation_config_values(configuration);
631  check_for_unused_config_values(configuration);
632 
633  scat_finder.dump_cross_sections(a, b, ma, mb, final_state_cross_sections,
634  plab);
635  std::exit(EXIT_SUCCESS);
636  }
637  if (modus) {
638  configuration.set_value(InputKeys::gen_modus, std::string(modus));
639  }
640  if (end_time) {
641  configuration.set_value(InputKeys::gen_endTime,
642  std::abs(std::atof(end_time)));
643  }
644 
645  int64_t seed = configuration.read(InputKeys::gen_randomseed);
646  if (seed < 0) {
647  configuration.set_value(InputKeys::gen_randomseed,
649  }
650 
651  // Avoid overwriting SMASH output
652  const std::filesystem::path lock_path = output_path / "smash.lock";
653  FileLock lock(lock_path);
654  if (!lock.acquire()) {
655  throw std::runtime_error(
656  "Another instance of SMASH is already writing to the specified "
657  "output directory. If you are sure this is not the case, remove \"" +
658  lock_path.native() + "\".");
659  }
660  logg[LMain].debug("output path: ", output_path);
661  if (!force_overwrite &&
662  std::filesystem::exists(output_path / "config.yaml")) {
663  throw std::runtime_error(
664  "Output directory would get overwritten. Select a different output "
665  "directory, clean up, or tell SMASH to ignore existing files.");
666  }
667 
668  /* Keep a copy of the configuration that was used in the output directory
669  * also save information about SMASH build as a comment */
670  std::ofstream(output_path / "config.yaml")
671  << "# " << SMASH_VERSION << '\n'
672 #ifdef GIT_BRANCH
673  << "# Branch : " << GIT_BRANCH << '\n'
674 #endif
675  << "# System : " << CMAKE_SYSTEM << '\n'
676  << "# Compiler : " << CMAKE_CXX_COMPILER_ID << ' '
677  << CMAKE_CXX_COMPILER_VERSION << '\n'
678  << "# Build : " << CMAKE_BUILD_TYPE << '\n'
679  << "# Date : " << BUILD_DATE << '\n'
680  << configuration.to_string() << '\n';
681 
682  const auto hash =
683  initialize_particles_decays_and_return_hash(configuration, version);
684 
685  // Create an experiment
686  logg[LMain].trace(SMASH_SOURCE_LOCATION, " create Experiment");
687  auto experiment = ExperimentBase::create(configuration, output_path);
688  check_for_unused_config_values(configuration);
689  tabulate_resonance_integrals(hash, tabulations_path);
690 
691  // Run the experiment
692  logg[LMain].trace(SMASH_SOURCE_LOCATION, " run the Experiment");
693  experiment->run();
694  } catch (std::exception &e) {
695  logg[LMain].fatal() << "SMASH failed with the following error:\n"
696  << e.what();
697  return EXIT_FAILURE;
698  }
699 
700  logg[LMain].trace() << SMASH_SOURCE_LOCATION << " about to return from main";
701  return 0;
702 }
Interface to the SMASH configuration files.
std::string to_string() const
Return a string of the current YAML 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.
bool is_empty() const
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...
void clear()
Erase the Configuration content.
bool has_section(const KeyLabels &labels) const
Return whether there is a (possibly empty) section with the given labels.
T take(const Key< T > &key)
The default interface for SMASH to read configuration values.
static std::unique_ptr< ExperimentBase > create(Configuration &config, const std::filesystem::path &output_path)
Factory method that creates and initializes a new Experiment<Modus>.
Definition: experiment.cc:22
Guard to create a file lock.
Definition: filelock.h:30
bool acquire()
Try to acquire the file lock.
Definition: filelock.cc:22
A pointer-like interface to global references to ParticleType objects.
Definition: particletype.h:679
Particle type contains the static properties of a particle species.
Definition: particletype.h:98
void dump_width_and_spectral_function() const
Prints out width and spectral function versus mass to the standard output.
static const ParticleType & find(PdgCode pdgcode)
Returns the ParticleType object for the given pdgcode.
Definition: particletype.cc:99
const std::string & name() const
Definition: particletype.h:142
static const ParticleTypeList & list_all()
Definition: particletype.cc:51
bool is_stable() const
Definition: particletype.h:246
double mass() const
Definition: particletype.h:145
PdgCode stores a Particle Data Group Particle Numbering Scheme particle type number.
Definition: pdgcode.h:111
A simple scatter finder: Just loops through all particles and checks each pair for a collision.
#define SMASH_SOURCE_LOCATION
Hackery that is required to output the location in the source code where the log statement occurs.
Definition: logging.h:153
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
std::unique_ptr< ExperimentBase > experiment(Configuration c)
Create an experiment given an input configuration.
Definition: setup.h:162
void ignore_simulation_config_values(Configuration &configuration)
Remove all config values that are only needed for simulations.
Definition: smash.cc:343
ScatterActionsFinder actions_finder_for_dump(Configuration &configuration)
Prepares ActionsFinder for cross-section and reaction dumps.
Definition: smash.cc:320
void usage(const int rc, const std::string &progname)
Prints usage information and exits the program.
Definition: smash.cc:139
void ensure_path_is_valid(const std::filesystem::path &path)
Ensures the output path is valid.
Definition: smash.cc:298
void check_for_unused_config_values(const Configuration &configuration)
Checks if there are unused config values.
Definition: smash.cc:329
void print_disclaimer()
Print the disclaimer.
Definition: smash.cc:186
std::filesystem::path default_output_path()
Definition: smash.cc:274
constexpr int p
Proton.
int64_t generate_63bit_seed()
Generates a seed with a truly random 63-bit value, if possible.
Definition: random.cc:21
std::string fill_left(const std::string &s, size_t width, char fill=' ')
Fill string with characters to the left until the given width is reached.
Definition: action.h:24
std::vector< std::string > split(const std::string &s, char delim)
Split string by delimiter.
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,...
Definition: library.cc:46
void tabulate_resonance_integrals(const sha256::Hash &hash, const std::string &tabulations_dir)
Tabulate the resonance integrals.
Definition: library.cc:75
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.
Definition: library.cc:34
sha256::Hash initialize_particles_decays_and_return_hash(Configuration &configuration, const std::string &version)
Initialize the particles and decays from the given configuration.
Definition: library.cc:54
ExperimentParameters create_experiment_parameters(Configuration &config)
Gathers all general Experiment parameters.
Definition: experiment.cc:132
void setup_default_float_traps()
Setup the floating-point traps used throughout SMASH.
static constexpr int LMain
Definition: experiment.h:92
int main(int argc, char *argv[])
Main program Smashes Many Accelerated Strongly-Interacting Hadrons :-)
Definition: smash.cc:373
Helper structure for Experiment.
std::optional< bool > use_monash_tune_default
Bool for the default usage of the monash tune in the collider modus.
static const Key< std::string > particles
See user guide description for more information.
Definition: input_keys.h:1071
static const Key< int64_t > gen_randomseed
See user guide description for more information.
Definition: input_keys.h:1148
static const Key< std::string > gen_modus
See user guide description for more information.
Definition: input_keys.h:1119
static const Key< std::string > decaymodes
See user guide description for more information.
Definition: input_keys.h:1075
static const Key< double > gen_endTime
See user guide description for more information.
Definition: input_keys.h:1093
static const Section output
Section for the output information.
Definition: input_keys.h:140
static const Section potentials
Section for the potentials information.
Definition: input_keys.h:164
static const Section forcedThermalization
Section for the forced thermalization.
Definition: input_keys.h:74
static const Section general
General section.
Definition: input_keys.h:77
static const Section modi
Section for the modus specific information.
Definition: input_keys.h:89
static const Section lattice
Section for the lattice.
Definition: input_keys.h:83
Exception class that is thrown, if the requested output directory already exists and -f was not speci...
Definition: smash.cc:260
Exception class that is thrown, if no new output path can be generated (there is a directory name for...
Definition: smash.cc:269