36 static constexpr
int LList = LogArea::List::id;
42 : file_id_{std::nullopt}, event_id_{0} {
51 const bool is_list_box =
54 throw std::logic_error(
55 "Unexpected error in ListModus constructor. Either List or ListBox "
56 "sections must be present in configuration.");
69 const bool file_prefix_used = modus_config.
has_value(file_prefix_key);
70 const bool filename_used = modus_config.
has_value(filename_key);
71 if (file_prefix_used == filename_used) {
72 throw std::invalid_argument(
73 "Either 'Filename' or 'File_Prefix' key must be used in 'Modi' section "
74 "in configuration file. Please, adjust your configuration file.");
76 if (file_prefix_used) {
84 throw std::runtime_error(
"ListModus only makes sense with one ensemble");
91 out <<
"-- List Modus\nInput directory for external particle lists:\n"
99 double earliest_formation_time = DBL_MAX;
100 double formation_time_difference = 0.0;
101 double reference_formation_time = 0.0;
102 bool first_particle =
true;
103 for (
const auto &particle : particles) {
104 const double t = particle.position().x0();
105 if (t < earliest_formation_time) {
106 earliest_formation_time = t;
108 if (first_particle) {
109 reference_formation_time = t;
110 first_particle =
false;
112 formation_time_difference += std::abs(t - reference_formation_time);
117 bool anti_streaming_needed = (formation_time_difference >
really_small);
119 if (anti_streaming_needed) {
120 for (
auto &particle : particles) {
122 const double t = particle.position().x0();
125 particle.position().threevec() - delta_t * particle.velocity();
127 particle.set_formation_time(t);
128 particle.set_cross_section_scaling_factor(0.0);
134 double t,
double x,
double y,
double z,
135 double mass,
double E,
double px,
double py,
140 pdgcode, mass, {t, x, y, z}, {E, px, py, pz},
LList,
142 particles.
insert(new_particle);
144 logg[
LList].warn() <<
"SMASH does not recognize pdg code " << pdgcode
145 <<
" loaded from file. This particle will be ignored.\n";
153 if (particles->
size() > 0) {
166 std::istringstream lineinput(line.text);
167 double t, x, y, z, mass, E, px, py, pz;
169 std::string pdg_string;
170 lineinput >> t >> x >> y >> z >> mass >> E >> px >> py >> pz >>
171 pdg_string >>
id >> charge;
172 if (lineinput.fail()) {
175 "Failed to convert the input string to the "
176 "expected data types.",
180 logg[
LList].debug(
"Particle ", pdgcode,
" (x,y,z)= (", x,
", ", y,
", ", z,
184 if (pdgcode.
charge() != charge) {
187 <<
"Charge of pdg = " << pdgcode <<
" != " << charge;
189 throw std::invalid_argument(
"Inconsistent input (charge).");
191 try_create_particle(particles, pdgcode, t, x, y, z, mass, E, px, py, pz);
197 ((file_id) ? std::to_string(*file_id) :
"");
199 const std::filesystem::path default_path =
202 const std::filesystem::path fpath = default_path / fname;
204 logg[
LList].debug() <<
"File: " << std::filesystem::absolute(fpath) <<
'\n';
206 if (!std::filesystem::exists(fpath)) {
209 << fpath.filename().native() <<
" does not exist! \n\n"
210 <<
"Usage of smash with external particle lists:\n"
211 <<
" 1. Put the external particle lists in one or more files\n"
212 <<
" according to the user guide instructions.\n"
213 <<
" 2. Particles info: t x y z mass p0 px py pz pdg ID charge\n"
214 <<
" in units of: fm fm fm fm GeV GeV GeV GeV GeV none none e\n";
216 throw std::runtime_error(
"External particle list does not exist!");
224 std::ifstream ifs{fpath};
235 throw std::runtime_error(
236 "Attempt to read in next event in ListModus object but no further "
237 "data found in single provided file. Please, check your setup.");
243 std::string event_string;
244 const std::string needle =
"end";
246 while (getline(ifs, line)) {
247 if (line.find(needle) == std::string::npos) {
248 event_string += line +
"\n";
254 if (!ifs.eof() && (ifs.fail() || ifs.bad())) {
256 logg[
LList].fatal() <<
"Error while reading "
257 << fpath.filename().native();
259 throw std::runtime_error(
"Error while reading external particle list");
269 std::streampos last_position) {
270 std::ifstream ifs{filepath};
275 if (last_position == -1) {
278 ifs.seekg(last_position);
281 int skipped_lines = 0;
282 const int max_comment_lines = 4;
283 while (std::getline(ifs, line) && line[0] !=
'#' &&
284 skipped_lines++ < max_comment_lines) {
293 logg[
LList].fatal() <<
"Error while reading "
294 << filepath.filename().native();
296 throw std::runtime_error(
"Error while reading external particle list");
312 utility_copy.warn_about_mass_discrepancy_ =
false;
313 utility_copy.warn_about_off_shell_particles_ =
false;
314 bool are_there_faulty_events =
false;
318 utility_copy.read_particles_from_next_event_(particles);
320 are_there_faulty_events =
true;
322 utility_copy.event_id_++;
323 }
catch (
const std::exception &) {
327 if (are_there_faulty_events) {
329 "More than 2 particles with the same 4-position have been found in the "
330 "same event.\nPlease, check your particles list file.");
351 this->ListModus::operator=(
ListModus(std::move(modus_config), param));
355 const OutputsList &output_list) {
363 data.set_4position(position);
366 std::make_unique<WallcrossingAction>(incoming_particle, data);
367 for (
const auto &output : output_list) {
368 if (!output->is_dilepton_output() && !output->is_photon_output()) {
369 output->at_interaction(*action, 0.);
375 logg[
LList].debug(
"Moved ", wraps,
" particles back into the box.");
395 return "(" + std::to_string(v[0]) +
", " + std::to_string(v[1]) +
", " +
396 std::to_string(v[2]) +
", " + std::to_string(v[3]) +
")";
398 std::map<std::string, int> checker{};
399 for (
const auto &
p : particles) {
400 checker[to_string(
p.position())]++;
402 bool error_found =
false;
403 for (
const auto &[key, value] : checker) {
405 logg[
LList].error() <<
"Event " <<
event <<
": Found " << value
406 <<
" particles at same position " << key;
Generic algorithms on containers and ranges.
Interface to the SMASH configuration files.
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...
T take(const Key< T > &key)
The default interface for SMASH to read configuration values.
The FourVector class holds relevant values in Minkowski spacetime with (+, −, −, −) metric signature.
const double length_
Length of the cube's edge in fm.
int impose_boundary_conditions(Particles *particles, const OutputsList &output_list={})
Enforces that all particles are inside the box at the beginning of an event.
ListBoxModus(Configuration modus_config, const ExperimentParameters ¶meters)
Constructor (This is the same as for the ListModus)
ListModus: Provides a modus for running SMASH on an external particle list, for example as an afterbu...
void backpropagate_to_same_time(Particles &particles)
Judge whether formation times are the same for all the particles; Don't do anti-freestreaming if all ...
bool file_has_events_(std::filesystem::path filepath, std::streampos last_position)
Check if the given file has events left after the given position.
std::optional< int > file_id_
The id of the current file.
std::string particle_list_filename_or_prefix_
Prefix of the file(s) containing the particle list.
std::filesystem::path file_path_(std::optional< int > file_id)
Return the absolute path of the data file.
std::string particle_list_file_directory_
File directory of the particle list.
void validate_list_of_particles_of_all_events_() const
Read and validate all events particles.
void read_particles_from_next_event_(Particles &particles)
Read the next event from file.
double start_time_
Starting time for the List; changed to the earliest formation time.
ListModus()=default
Construct an empty list.
void try_create_particle(Particles &particles, PdgCode pdgcode, double t, double x, double y, double z, double mass, double E, double px, double py, double pz)
Tries to add a new particle to particles and performs consistency checks: (i) The PDG code is legal a...
bool verbose_
Flag to suppress some error messages.
std::streampos last_read_position_
Last read position in current file.
bool warn_about_mass_discrepancy_
Auxiliary flag to warn about mass-discrepancies only once per instance.
bool warn_about_off_shell_particles_
Auxiliary flag to warn about off-shell particles only once per instance.
std::string next_event_()
Read the next event.
double initial_conditions(Particles *particles, const ExperimentParameters ¶meters)
Generates initial state of the particles in the system according to a list.
int event_id_
The unique id of the current event.
ParticleData contains the dynamic information of a certain particle.
The Particles class abstracts the storage and manipulation of particles.
const ParticleData & insert(const ParticleData &p)
Inserts the particle into the list of particles.
PdgCode stores a Particle Data Group Particle Numbering Scheme particle type number.
int charge() const
The charge of the particle.
The ThreeVector class represents a physical three-vector with the components .
Collection of useful constants that are known at compile time.
std::ostream & operator<<(std::ostream &out, const ActionPtr &action)
Convenience: dereferences the ActionPtr to Action.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
static bool enforce_periodic_boundaries(Iterator begin, const Iterator &end, typename std::iterator_traits< Iterator >::value_type length)
Enforces periodic boundaries on the given collection of values.
build_vector_< Line > line_parser(const std::string &input)
Helper function for parsing particles.txt and decaymodes.txt.
static constexpr int LList
ParticleData create_valid_smash_particle_matching_provided_quantities(PdgCode pdgcode, double mass, const FourVector &four_position, const FourVector &four_momentum, int log_area, bool &mass_warning, bool &on_shell_warning)
This function creates a SMASH particle validating the provided information.
constexpr double really_small
Numerical error tolerance.
std::string build_error_string(std::string message, const Line &line)
Builds a meaningful error message.
static bool is_list_of_particles_invalid(const Particles &, int)
Helper structure for Experiment.
int n_ensembles
Number of parallel ensembles.
Line consists of a line number and the contents of that line.
Used when external particle list is invalid.
Used when external particle list cannot be found.