109 file_{path /
"SMASH_IC.dat",
"w"},
113 "# %s initial conditions: hypersurface of constant proper time\n",
116 "# tau x y eta mt px py Rap pdg charge "
117 "baryon_number strangeness\n");
119 "# fm fm fm none GeV GeV GeV none none e "
128 throw std::logic_error(
129 "ICOutput shouldn't be used with multiple parallel ensembles.");
131 std::fprintf(
file_.
get(),
"# event %i ensemble %i start\n",
139 throw std::logic_error(
140 "ICOutput shouldn't be used with multiple parallel ensembles.");
142 std::fprintf(
file_.
get(),
"# event %i ensemble %i end\n",
149 "End time might be too small for initial conditions output. "
150 "Hypersurface has not yet been crossed by ",
151 particles.
size(),
" particle(s).");
156 const std::unique_ptr<Clock> &,
169 const double m_trans =
174 const double rapidity =
184 std::fprintf(
file_.
get(),
"%g %g %g %g %g %g %g %g %s %i %i %i \n",
198 const double next_proper_time = particle.
position().
tau();
200 throw std::runtime_error(
201 "Hypersurface proper time changed during evolution.");
Action is the base class for a generic process that takes a number of incoming particles and transfor...
virtual ProcessType get_type() const
Get the process type.
const ParticleList & incoming_particles() const
Get the list of particles that go into the action.
A class to pre-calculate and store parameters relevant for density calculation.
double eta() const
calculate the space-time rapidity from the given four vector
double tau() const
calculate the proper time from the given four vector
void at_eventstart(const Particles &, const EventLabel &event_label, const EventInfo &event) override
Write event start line.
void at_intermediate_time(const Particles &, const std::unique_ptr< Clock > &, const DensityParameters &, const EventLabel &, const EventInfo &) override
Unused, but needed since virtually declared in mother class.
RenamingFilePtr file_
Pointer to output file.
ICOutput(const std::filesystem::path &path, const std::string &name, const OutputParameters &out_par)
Create a new IC output.
double IC_proper_time_
Proper time of the particles removed when extracting initial conditions.
void at_interaction(const Action &action, const double) override
Write particle data at the hypersurface crossing point to the IC output.
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Write event end line.
Abstraction of generic output.
ParticleData contains the dynamic information of a certain particle.
PdgCode pdgcode() const
Get the pdgcode of the particle.
const ParticleType & type() const
Get the type of the particle.
const FourVector & momentum() const
Get the particle's 4-momentum.
double effective_mass() const
Get the particle's effective mass.
HistoryData get_history() const
Get history information.
const FourVector & position() const
Get the particle's position in Minkowski space.
int32_t charge() const
The charge of the particle.
int baryon_number() const
The Particles class abstracts the storage and manipulation of particles.
std::string string() const
FILE * get()
Get the underlying FILE* pointer.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
static constexpr int LHyperSurfaceCrossing
@ HyperSurfaceCrossing
See here for a short description.
constexpr double really_small
Numerical error tolerance.
Structure to contain custom data for output.
int n_ensembles
Number of ensembles.
bool impose_kinematic_cut_for_SMASH_IC
Whether or not kinematic cuts are employed for SMASH IC.
Structure to contain information about the event and ensemble numbers.
int32_t ensemble_number
The number of the ensemble.
int32_t event_number
The number of the event.
int32_t collisions_per_particle
Collision counter per particle, zero only for initially present particles.
Helper structure for Experiment to hold output options and parameters.