Version: SMASH-3.2
icoutput.cc
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2019-2020,2022-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #include "smash/icoutput.h"
11 
12 #include <filesystem>
13 #include <fstream>
14 
15 #include "smash/action.h"
16 
17 namespace smash {
18 static constexpr int LHyperSurfaceCrossing = LogArea::HyperSurfaceCrossing::id;
19 
106 ICOutput::ICOutput(const std::filesystem::path &path, const std::string &name,
107  const OutputParameters &out_par)
108  : OutputInterface(name),
109  file_{path / "SMASH_IC.dat", "w"},
110  out_par_(out_par) {
111  std::fprintf(
112  file_.get(),
113  "# %s initial conditions: hypersurface of constant proper time\n",
114  SMASH_VERSION);
115  std::fprintf(file_.get(),
116  "# tau x y eta mt px py Rap pdg charge "
117  "baryon_number strangeness\n");
118  std::fprintf(file_.get(),
119  "# fm fm fm none GeV GeV GeV none none e "
120  "none none\n");
121 }
122 
124 
125 void ICOutput::at_eventstart(const Particles &, const EventLabel &event_label,
126  const EventInfo &event) {
127  if (event.n_ensembles != 1) {
128  throw std::logic_error(
129  "ICOutput shouldn't be used with multiple parallel ensembles.");
130  }
131  std::fprintf(file_.get(), "# event %i ensemble %i start\n",
132  event_label.event_number, event_label.ensemble_number);
133 }
134 
135 void ICOutput::at_eventend(const Particles &particles,
136  const EventLabel &event_label,
137  const EventInfo &event) {
138  if (event.n_ensembles != 1) {
139  throw std::logic_error(
140  "ICOutput shouldn't be used with multiple parallel ensembles.");
141  }
142  std::fprintf(file_.get(), "# event %i ensemble %i end\n",
143  event_label.event_number, event_label.ensemble_number);
144 
145  // If the runtime is too short some particles might not yet have
146  // reached the hypersurface. Warning is printed.
147  if (particles.size() != 0 && !event.impose_kinematic_cut_for_SMASH_IC) {
149  "End time might be too small for initial conditions output. "
150  "Hypersurface has not yet been crossed by ",
151  particles.size(), " particle(s).");
152  }
153 }
154 
156  const std::unique_ptr<Clock> &,
157  const DensityParameters &,
158  const EventLabel &, const EventInfo &) {
159  // Dummy, but virtual function needs to be declared.
160 }
161 
162 void ICOutput::at_interaction(const Action &action, const double) {
163  assert(action.get_type() == ProcessType::HyperSurfaceCrossing);
164  assert(action.incoming_particles().size() == 1);
165 
166  ParticleData particle = action.incoming_particles()[0];
167 
168  // transverse mass
169  const double m_trans =
170  std::sqrt(particle.effective_mass() * particle.effective_mass() +
171  particle.momentum()[1] * particle.momentum()[1] +
172  particle.momentum()[2] * particle.momentum()[2]);
173  // momentum space rapidity
174  const double rapidity =
175  0.5 * std::log((particle.momentum()[0] + particle.momentum()[3]) /
176  (particle.momentum()[0] - particle.momentum()[3]));
177 
178  // Determine if particle is spectator:
179  // Fulfilled if particle is initial nucleon, aka has no prior interactions
180  bool is_spectator = particle.get_history().collisions_per_particle == 0;
181 
182  // write particle data excluding spectators
183  if (!is_spectator) {
184  std::fprintf(file_.get(), "%g %g %g %g %g %g %g %g %s %i %i %i \n",
185  particle.position().tau(), particle.position()[1],
186  particle.position()[2], particle.position().eta(), m_trans,
187  particle.momentum()[1], particle.momentum()[2], rapidity,
188  particle.pdgcode().string().c_str(), particle.type().charge(),
189  particle.type().baryon_number(),
190  particle.type().strangeness());
191  }
192 
193  if (IC_proper_time_ < 0.0) {
194  // First particle that is removed, overwrite negative default
195  IC_proper_time_ = particle.position().tau();
196  } else {
197  // Verify that all other particles have the same proper time
198  const double next_proper_time = particle.position().tau();
199  if (!((next_proper_time - IC_proper_time_) < really_small))
200  throw std::runtime_error(
201  "Hypersurface proper time changed during evolution.");
202  }
203 }
204 
205 } // namespace smash
Action is the base class for a generic process that takes a number of incoming particles and transfor...
Definition: action.h:35
virtual ProcessType get_type() const
Get the process type.
Definition: action.h:131
const ParticleList & incoming_particles() const
Get the list of particles that go into the action.
Definition: action.cc:58
A class to pre-calculate and store parameters relevant for density calculation.
Definition: density.h:92
double eta() const
calculate the space-time rapidity from the given four vector
Definition: fourvector.h:482
double tau() const
calculate the proper time from the given four vector
Definition: fourvector.h:478
void at_eventstart(const Particles &, const EventLabel &event_label, const EventInfo &event) override
Write event start line.
Definition: icoutput.cc:125
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.
Definition: icoutput.cc:155
RenamingFilePtr file_
Pointer to output file.
Definition: icoutput.h:76
ICOutput(const std::filesystem::path &path, const std::string &name, const OutputParameters &out_par)
Create a new IC output.
Definition: icoutput.cc:106
double IC_proper_time_
Proper time of the particles removed when extracting initial conditions.
Definition: icoutput.h:89
void at_interaction(const Action &action, const double) override
Write particle data at the hypersurface crossing point to the IC output.
Definition: icoutput.cc:162
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Write event end line.
Definition: icoutput.cc:135
Abstraction of generic output.
ParticleData contains the dynamic information of a certain particle.
Definition: particledata.h:58
PdgCode pdgcode() const
Get the pdgcode of the particle.
Definition: particledata.h:87
const ParticleType & type() const
Get the type of the particle.
Definition: particledata.h:128
const FourVector & momentum() const
Get the particle's 4-momentum.
Definition: particledata.h:158
double effective_mass() const
Get the particle's effective mass.
Definition: particledata.cc:24
HistoryData get_history() const
Get history information.
Definition: particledata.h:139
const FourVector & position() const
Get the particle's position in Minkowski space.
Definition: particledata.h:204
int strangeness() const
Definition: particletype.h:213
int32_t charge() const
The charge of the particle.
Definition: particletype.h:189
int baryon_number() const
Definition: particletype.h:210
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
size_t size() const
Definition: particles.h:87
std::string string() const
Definition: pdgcode.h:325
FILE * get()
Get the underlying FILE* pointer.
Definition: file.cc:27
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
Definition: action.h:24
static constexpr int LHyperSurfaceCrossing
Definition: binaryoutput.cc:22
@ HyperSurfaceCrossing
See here for a short description.
constexpr double really_small
Numerical error tolerance.
Definition: constants.h:37
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.
Definition: particledata.h:32
Helper structure for Experiment to hold output options and parameters.