Loading [MathJax]/extensions/tex2jax.js
 Version: SMASH-3.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
listmodus.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2024
3  * SMASH Team
4  *
5  * GNU General Public License (GPLv3 or later)
6  */
7 #ifndef SRC_INCLUDE_SMASH_LISTMODUS_H_
8 #define SRC_INCLUDE_SMASH_LISTMODUS_H_
9 
10 #include <cmath>
11 #include <cstdint>
12 #include <list>
13 #include <string>
14 #include <utility>
15 
16 #include "forwarddeclarations.h"
17 #include "modusdefault.h"
18 
19 namespace smash {
20 
56 class ListModus : public ModusDefault {
57  public:
70  explicit ListModus(Configuration modus_config,
71  const ExperimentParameters &parameters);
72 
77  ListModus() = default;
78 
89  double initial_conditions(Particles *particles,
90  const ExperimentParameters &parameters);
101  void backpropagate_to_same_time(Particles &particles);
102 
137  void try_create_particle(Particles &particles, PdgCode pdgcode, double t,
138  double x, double y, double z, double mass, double E,
139  double px, double py, double pz);
140 
144  struct LoadFailure : public std::runtime_error {
145  using std::runtime_error::runtime_error;
146  };
147 
151  struct InvalidEvents : public std::invalid_argument {
152  using std::invalid_argument::invalid_argument;
153  };
154 
156  bool is_list() const { return true; }
157 
158  protected:
160  double start_time_ = 0.;
161 
162  private:
174 
185  bool file_has_events_(std::filesystem::path filepath,
186  std::streampos last_position);
187 
200  std::filesystem::path file_path_(std::optional<int> file_id);
201 
209  std::string next_event_();
210 
220 
223 
229 
231  std::optional<int> file_id_;
232 
235 
237  std::streampos last_read_position_ = 0;
238 
243 
250  bool verbose_ = true;
251 
260  friend std::ostream &operator<<(std::ostream &out, const ListModus &m);
261 };
262 
299 class ListBoxModus : public ListModus {
300  public:
311  explicit ListBoxModus(Configuration modus_config,
312  const ExperimentParameters &parameters);
313 
315  bool is_box() const { return true; }
316 
318  int impose_boundary_conditions(Particles *particles,
319  const OutputsList &output_list = {});
320 
323  const Particles &particles, double min_cell_length,
324  double timestep_duration, CollisionCriterion crit,
325  const bool include_unformed_particles,
326  CellSizeStrategy strategy = CellSizeStrategy::Optimal) const {
328  if (crit == CollisionCriterion::Stochastic) {
330  }
331  return {{{0, 0, 0}, {length_, length_, length_}},
332  particles,
333  min_cell_length,
334  timestep_duration,
335  limit,
336  include_unformed_particles,
337  strategy};
338  }
339 
340  private:
342  const double length_;
343 };
344 
345 } // namespace smash
346 
347 #endif // SRC_INCLUDE_SMASH_LISTMODUS_H_
Interface to the SMASH configuration files.
ListBox: Provides a modus for running the SMASH Box with an external particle list,...
Definition: listmodus.h:299
Grid< GridOptions::PeriodicBoundaries > create_grid(const Particles &particles, double min_cell_length, double timestep_duration, CollisionCriterion crit, const bool include_unformed_particles, CellSizeStrategy strategy=CellSizeStrategy::Optimal) const
Creates the Grid with normal boundary conditions.
Definition: listmodus.h:322
const double length_
Length of the cube's edge in fm.
Definition: listmodus.h:342
bool is_box() const
in the case of the ListBoxModus is_box has to be true
Definition: listmodus.h:315
int impose_boundary_conditions(Particles *particles, const OutputsList &output_list={})
Enforces that all particles are inside the box at the beginning of an event.
Definition: listmodus.cc:354
ListBoxModus(Configuration modus_config, const ExperimentParameters &parameters)
Constructor (This is the same as for the ListModus)
Definition: listmodus.cc:334
ListModus: Provides a modus for running SMASH on an external particle list, for example as an afterbu...
Definition: listmodus.h:56
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 ...
Definition: listmodus.cc:96
bool file_has_events_(std::filesystem::path filepath, std::streampos last_position)
Check if the given file has events left after the given position.
Definition: listmodus.cc:268
std::optional< int > file_id_
The id of the current file.
Definition: listmodus.h:231
bool is_list() const
Definition: listmodus.h:156
std::string particle_list_filename_or_prefix_
Prefix of the file(s) containing the particle list.
Definition: listmodus.h:228
std::filesystem::path file_path_(std::optional< int > file_id)
Return the absolute path of the data file.
Definition: listmodus.cc:195
std::string particle_list_file_directory_
File directory of the particle list.
Definition: listmodus.h:222
void validate_list_of_particles_of_all_events_() const
Read and validate all events particles.
Definition: listmodus.cc:309
void read_particles_from_next_event_(Particles &particles)
Read the next event from file.
Definition: listmodus.cc:163
double start_time_
Starting time for the List; changed to the earliest formation time.
Definition: listmodus.h:160
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...
Definition: listmodus.cc:133
bool verbose_
Flag to suppress some error messages.
Definition: listmodus.h:250
std::streampos last_read_position_
Last read position in current file.
Definition: listmodus.h:237
bool warn_about_mass_discrepancy_
Auxiliary flag to warn about mass-discrepancies only once per instance.
Definition: listmodus.h:240
bool warn_about_off_shell_particles_
Auxiliary flag to warn about off-shell particles only once per instance.
Definition: listmodus.h:242
std::string next_event_()
Read the next event.
Definition: listmodus.cc:222
double initial_conditions(Particles *particles, const ExperimentParameters &parameters)
Generates initial state of the particles in the system according to a list.
Definition: listmodus.cc:150
int event_id_
The unique id of the current event.
Definition: listmodus.h:234
Base class for Modus classes that provides default function implementations.
Definition: modusdefault.h:45
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
PdgCode stores a Particle Data Group Particle Numbering Scheme particle type number.
Definition: pdgcode.h:111
CollisionCriterion
Criteria used to check collisions.
@ Stochastic
Stochastic Criteiron.
friend std::ostream & operator<<(std::ostream &out, const ListModus &m)
Writes the initial state for the List to the output stream.
Definition: listmodus.cc:90
Definition: action.h:24
CellNumberLimitation
Identifies whether the number of cells should be limited.
Definition: grid.h:55
@ ParticleNumber
Limit the number of cells to the number of particles.
@ None
No cell number limitation.
CellSizeStrategy
Indentifies the strategy of determining the cell size.
Definition: grid.h:33
@ Optimal
Look for optimal cell size.
Helper structure for Experiment.
Used when external particle list is invalid.
Definition: listmodus.h:151
Used when external particle list cannot be found.
Definition: listmodus.h:144