Version: SMASH-3.2
Output Classes

Classes

class  smash::BinaryOutputBase
 Base class for SMASH binary output. More...
 
class  smash::BinaryOutputCollisions
 Saves SMASH collision history to binary file. More...
 
class  smash::BinaryOutputParticles
 Writes the particle list at specific times to the binary file. More...
 
class  smash::BinaryOutputInitialConditions
 Writes the particles when crossing the hypersurface to the binary file. More...
 
class  smash::HepMcInterface
 Base class for output handlers that need the HepMC3 structure. More...
 
class  smash::HepMcOutput
 SMASH output to HepMC file. More...
 
class  smash::ICOutput
 SMASH output in ASCII format containing initial conditions for hydrodynamic codes. More...
 
class  smash::OscarOutput< Format, Contents >
 
struct  smash::EventInfo
 Structure to contain custom data for output. More...
 
struct  smash::EventLabel
 Structure to contain information about the event and ensemble numbers. More...
 
class  smash::OutputInterface
 Abstraction of generic output. More...
 
class  smash::RivetOutput
 SMASH output to Rivet analyses. More...
 
class  smash::RootOutput
 
class  smash::ThermodynamicLatticeOutput
 Writes the thermodynamic quantities at lattice points versus time. More...
 
class  smash::ThermodynamicOutput
 Writes the thermodynamic quantities at a specified point versus time. More...
 
class  smash::VtkOutput
 SMASH output in a paraview format, intended for simple visualization. More...
 

Enumerations

enum  smash::OscarOutputFormat { smash::OscarFormat2013 , smash::OscarFormat2013Extended , smash::OscarFormat1999 , smash::ASCII }
 Selector for the output format of OscarOutput. More...
 
enum  smash::OscarOutputContents {
  smash::OscarInteractions = 0x001 , smash::OscarTimesteps = 0x002 , smash::OscarAtEventstart = 0x004 , smash::OscarParticlesAtEventend = 0x008 ,
  smash::OscarParticlesAtEventendIfNotEmpty = 0x010 , smash::OscarParticlesIC = 0x020
}
 Flags for the Contents template parameter of OscarOutput. More...
 

Functions

std::unique_ptr< OutputInterfacesmash::create_binary_output (const std::string &format, const std::string &content, const std::filesystem::path &path, const OutputParameters &out_par)
 Create a binary output object. More...
 
 smash::OscarOutput< Format, Contents >::OscarOutput (const std::filesystem::path &path, const std::string &name, const std::vector< std::string > quantities={})
 Create oscar output. More...
 
void smash::OscarOutput< Format, Contents >::at_eventstart (const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
 Writes the initial particle information of an event to the oscar output. More...
 
void smash::OscarOutput< Format, Contents >::at_eventend (const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
 Writes the final particle information of an event to the oscar output. More...
 
void smash::OscarOutput< Format, Contents >::at_interaction (const Action &action, const double density) override
 Writes a interaction prefix line and a line for every incoming and outgoing particle to the oscar output. More...
 
void smash::OscarOutput< Format, Contents >::at_intermediate_time (const Particles &particles, const std::unique_ptr< Clock > &clock, const DensityParameters &dens_param, const EventLabel &event_label, const EventInfo &event) override
 Writes a prefix line then write out all current particles. More...
 
void smash::OscarOutput< Format, Contents >::write_particledata (const ParticleData &data)
 Write single particle information line to output. More...
 
void smash::OscarOutput< Format, Contents >::write (const Particles &particles)
 Write the particle information of a list of particles to the output. More...
 
std::unique_ptr< OutputInterfacesmash::create_oscar_output (const std::string &format, const std::string &content, const std::filesystem::path &path, const OutputParameters &out_par)
 

Variables

RenamingFilePtr smash::OscarOutput< Format, Contents >::file_
 Full filepath of the output file. More...
 
OutputFormatter< ToASCIIsmash::OscarOutput< Format, Contents >::formatter_
 Formatter of the output. More...
 

Enumeration Type Documentation

◆ OscarOutputFormat

Selector for the output format of OscarOutput.

Enumerator
OscarFormat2013 
OscarFormat2013Extended 
OscarFormat1999 
ASCII 

Definition at line 31 of file oscaroutput.h.

31  {
35  ASCII
36 };
@ OscarFormat1999
Definition: oscaroutput.h:34
@ OscarFormat2013Extended
Definition: oscaroutput.h:33
@ ASCII
Definition: oscaroutput.h:35
@ OscarFormat2013
Definition: oscaroutput.h:32

◆ OscarOutputContents

Flags for the Contents template parameter of OscarOutput.

Flags can be combined with binary OR operators to some arbitrary int. That's why the values of the enumerators are written out (in hexadecimal), to ensure every flag occupies a single bit.

Enumerator
OscarInteractions 

store interaction information (write_interaction)

OscarTimesteps 

store the state after N timesteps (after_Nth_timestep)

OscarAtEventstart 

store the state at the start of each event (at_eventstart)

OscarParticlesAtEventend 

store the state at the end of each event (at_eventend)

OscarParticlesAtEventendIfNotEmpty 

store the state at the end of each event if it is not empty (at_eventend)

OscarParticlesIC 

store the particles that are removed on the hypersurface

Definition at line 45 of file oscaroutput.h.

45  {
47  OscarInteractions = 0x001,
49  OscarTimesteps = 0x002,
51  OscarAtEventstart = 0x004,
57  OscarParticlesIC = 0x020
58 };
@ OscarParticlesAtEventend
store the state at the end of each event (at_eventend)
Definition: oscaroutput.h:53
@ OscarParticlesAtEventendIfNotEmpty
store the state at the end of each event if it is not empty (at_eventend)
Definition: oscaroutput.h:55
@ OscarAtEventstart
store the state at the start of each event (at_eventstart)
Definition: oscaroutput.h:51
@ OscarInteractions
store interaction information (write_interaction)
Definition: oscaroutput.h:47
@ OscarParticlesIC
store the particles that are removed on the hypersurface
Definition: oscaroutput.h:57
@ OscarTimesteps
store the state after N timesteps (after_Nth_timestep)
Definition: oscaroutput.h:49

Function Documentation

◆ create_binary_output()

std::unique_ptr< OutputInterface > smash::create_binary_output ( const std::string &  format,
const std::string &  content,
const std::filesystem::path &  path,
const OutputParameters out_par 
)

Create a binary output object.

This is a helper function for the Experiment class to facilitate the logic when creating the output objects.

Parameters
[in]formatThe output format as string, e.g. "Oscar2013"
[in]contentThe output content as string, e.g. "Particles"
[in]pathThe path to the output directory
[in]out_parThe output parameters object containing output metadata
Returns
A std::unique_ptr<OutputInterface> polymorphically initialised to the correct binary output object.

Definition at line 476 of file binaryoutput.cc.

478  {
479  if (content == "Particles") {
480  return std::make_unique<BinaryOutputParticles>(
481  path, content, out_par,
482  get_list_of_binary_quantities(content, format, out_par));
483  } else if (content == "Collisions" || content == "Dileptons" ||
484  content == "Photons") {
485  return std::make_unique<BinaryOutputCollisions>(
486  path, content, out_par,
487  get_list_of_binary_quantities(content, format, out_par));
488  } else if (content == "Initial_Conditions") {
489  return std::make_unique<BinaryOutputInitialConditions>(
490  path, content, get_list_of_binary_quantities(content, format, out_par));
491  } else {
492  throw std::invalid_argument("Binary output not available for '" + content +
493  "' content.");
494  }
495 }
FormattingHelper< T > format(const T &value, const char *unit, int width=-1, int precision=-1)
Acts as a stream modifier for std::ostream to output an object with an optional suffix string and wit...
Definition: logging.h:217
static auto get_list_of_binary_quantities(const std::string &content, const std::string &format, const OutputParameters &parameters)

◆ OscarOutput()

template<OscarOutputFormat Format, int Contents>
smash::OscarOutput< Format, Contents >::OscarOutput ( const std::filesystem::path &  path,
const std::string &  name,
const std::vector< std::string >  quantities = {} 
)

Create oscar output.

Parameters
[in]pathOutput path.
[in]nameName of the ouput.
[in]quantitiesList of quantities present in the output file.

◆ at_eventstart()

template<OscarOutputFormat Format, int Contents>
void smash::OscarOutput< Format, Contents >::at_eventstart ( const Particles particles,
const EventLabel event_label,
const EventInfo event 
)
overridevirtual

Writes the initial particle information of an event to the oscar output.

Parameters
[in]particlesCurrent list of all particles.
[in]event_labelNumbers of event and ensemble.
[in]eventEvent info, see event_info

Reimplemented from smash::OutputInterface.

Definition at line 137 of file oscaroutput.cc.

139  {
140  // We do not want the inital particle list or number to be printed in case of
141  // IC output
142  if (Contents & OscarAtEventstart && !(Contents & OscarParticlesIC)) {
143  if (Format == ASCII || Format == OscarFormat2013 ||
144  Format == OscarFormat2013Extended) {
145  std::fprintf(file_.get(), "# event %i ensemble %i in %zu\n",
146  event_label.event_number, event_label.ensemble_number,
147  particles.size());
148  } else {
149  /* OSCAR line prefix : initial particles; final particles; event id
150  * First block of an event: initial = 0, final = number of particles
151  */
152  const size_t zero = 0;
153  std::fprintf(file_.get(), "%zu %zu %i %i\n", zero, particles.size(),
154  event_label.event_number, event_label.ensemble_number);
155  }
156  write(particles);
157  } else if (Contents & OscarParticlesIC) {
158  if (Format == ASCII || Format == OscarFormat2013 ||
159  Format == OscarFormat2013Extended) {
160  std::fprintf(file_.get(), "# event %i ensemble %i start\n",
161  event_label.event_number, event_label.ensemble_number);
162  } else if (Format == OscarFormat1999) {
163  const size_t zero = 0;
164  std::fprintf(file_.get(), "%zu %zu %i %i\n", zero, zero,
165  event_label.event_number, event_label.ensemble_number);
166  }
167  }
168 }
FILE * get()
Get the underlying FILE* pointer.
Definition: file.cc:27
void write(const Particles &particles)
Write the particle information of a list of particles to the output.
Definition: oscaroutput.cc:130
RenamingFilePtr file_
Full filepath of the output file.
Definition: oscaroutput.h:136

◆ at_eventend()

template<OscarOutputFormat Format, int Contents>
void smash::OscarOutput< Format, Contents >::at_eventend ( const Particles particles,
const EventLabel event_label,
const EventInfo event 
)
overridevirtual

Writes the final particle information of an event to the oscar output.

Parameters
[in]particlesCurrent list of particles.
[in]event_labelNumbers of event and ensemble.
[in]eventEvent info, see event_info

Reimplemented from smash::OutputInterface.

Definition at line 171 of file oscaroutput.cc.

173  {
174  if (Format == ASCII || Format == OscarFormat2013 ||
175  Format == OscarFormat2013Extended) {
176  if (Contents & OscarParticlesAtEventend ||
177  (Contents & OscarParticlesAtEventendIfNotEmpty && !event.empty_event)) {
178  std::fprintf(file_.get(), "# event %i ensemble %i out %zu\n",
179  event_label.event_number, event_label.ensemble_number,
180  particles.size());
181  write(particles);
182  }
183  // Comment end of an event
184  if (!(Contents & OscarParticlesIC)) {
185  const char *empty_event_str = event.empty_event ? "no" : "yes";
186  std::fprintf(file_.get(),
187  "# event %i ensemble %i end 0 impact %7.3f "
188  "scattering_projectile_target %s\n",
189  event_label.event_number, event_label.ensemble_number,
190  event.impact_parameter, empty_event_str);
191  } else {
192  std::fprintf(file_.get(), "# event %i ensemble %i end\n",
193  event_label.event_number, event_label.ensemble_number);
194  }
195  } else {
196  /* OSCAR line prefix : initial particles; final particles; event id
197  * Last block of an event: initial = number of particles, final = 0
198  * Block ends with null interaction. */
199  const size_t zero = 0;
200  if (Contents & OscarParticlesAtEventend ||
201  (Contents & OscarParticlesAtEventendIfNotEmpty && !event.empty_event)) {
202  std::fprintf(file_.get(), "%zu %zu %i %i\n", particles.size(), zero,
203  event_label.event_number, event_label.ensemble_number);
204  write(particles);
205  }
206  // Null interaction marks the end of an event
207  std::fprintf(file_.get(), "%zu %zu %i %i %7.3f\n", zero, zero,
208  event_label.event_number, event_label.ensemble_number,
209  event.impact_parameter);
210  }
211  // Flush to disk
212  std::fflush(file_.get());
213 
214  if (Contents & OscarParticlesIC) {
215  // If the runtime is too short some particles might not yet have
216  // reached the hypersurface. Warning is printed.
217  if (particles.size() != 0 && !event.impose_kinematic_cut_for_SMASH_IC) {
219  "End time might be too small for initial conditions output. "
220  "Hypersurface has not yet been crossed by ",
221  particles.size(), " particle(s).");
222  }
223  }
224 }
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
static constexpr int LHyperSurfaceCrossing
Definition: binaryoutput.cc:22

◆ at_interaction()

template<OscarOutputFormat Format, int Contents>
void smash::OscarOutput< Format, Contents >::at_interaction ( const Action action,
const double  density 
)
overridevirtual

Writes a interaction prefix line and a line for every incoming and outgoing particle to the oscar output.

Parameters
[in]actionAction that holds the information of the interaction.
[in]densityDensity at the interaction point.

Reimplemented from smash::OutputInterface.

Definition at line 227 of file oscaroutput.cc.

228  {
229  if (Contents & OscarInteractions) {
230  if (Format == ASCII || Format == OscarFormat2013 ||
231  Format == OscarFormat2013Extended) {
232  std::fprintf(file_.get(),
233  "# interaction in %zu out %zu rho %12.7f weight %12.7g"
234  " partial %12.7f type %5i\n",
235  action.incoming_particles().size(),
236  action.outgoing_particles().size(), density,
237  action.get_total_weight(), action.get_partial_weight(),
238  static_cast<int>(action.get_type()));
239  } else {
240  /* OSCAR line prefix : initial final
241  * particle creation: 0 1
242  * particle 2<->2 collision: 2 2
243  * resonance formation: 2 1
244  * resonance decay: 1 2
245  * etc.*/
246  std::fprintf(file_.get(), "%zu %zu %12.7f %12.7f %12.7f %5i\n",
247  action.incoming_particles().size(),
248  action.outgoing_particles().size(), density,
249  action.get_total_weight(), action.get_partial_weight(),
250  static_cast<int>(action.get_type()));
251  }
252  for (const auto &p : action.incoming_particles()) {
254  }
255  for (const auto &p : action.outgoing_particles()) {
257  }
258  } else if (Contents & OscarParticlesIC) {
259  for (const auto &p : action.incoming_particles()) {
261  }
262  }
263 }
void write_particledata(const ParticleData &data)
Write single particle information line to output.
Definition: oscaroutput.cc:842
constexpr int p
Proton.

◆ at_intermediate_time()

template<OscarOutputFormat Format, int Contents>
void smash::OscarOutput< Format, Contents >::at_intermediate_time ( const Particles particles,
const std::unique_ptr< Clock > &  clock,
const DensityParameters dens_param,
const EventLabel event_label,
const EventInfo event 
)
overridevirtual

Writes a prefix line then write out all current particles.

Parameters
[in]particlesCurrent list of particles.
[in]clockUnused, needed since inherited.
[in]dens_paramUnused, needed since inherited.
[in]event_labelNumbers of event and ensemble.
[in]eventEvent info, see event_info

Reimplemented from smash::OutputInterface.

Definition at line 266 of file oscaroutput.cc.

269  {
270  if (Contents & OscarTimesteps) {
271  if (Format == ASCII || Format == OscarFormat2013 ||
272  Format == OscarFormat2013Extended) {
273  std::fprintf(file_.get(), "# event %i ensemble %i out %zu\n",
274  event_label.event_number, event_label.ensemble_number,
275  particles.size());
276  } else {
277  const size_t zero = 0;
278  std::fprintf(file_.get(), "%zu %zu %i %i\n", particles.size(), zero,
279  event_label.event_number, event_label.ensemble_number);
280  }
281  write(particles);
282  }
283 }

◆ write_particledata()

template<OscarOutputFormat Format, int Contents>
void smash::OscarOutput< Format, Contents >::write_particledata ( const ParticleData data)
private

Write single particle information line to output.

Parameters
[in]dataData of particle.

Definition at line 842 of file oscaroutput.cc.

843  {
844  std::fprintf(file_.get(), "%s\n", formatter_.data_line(data).c_str());
845 }
OutputFormatter< ToASCII > formatter_
Formatter of the output.
Definition: oscaroutput.h:139

◆ write()

template<OscarOutputFormat Format, int Contents>
void smash::OscarOutput< Format, Contents >::write ( const Particles particles)
inlineprivate

Write the particle information of a list of particles to the output.

One line per particle.

Parameters
[in]particlesList of particles to be written

Definition at line 130 of file oscaroutput.cc.

130  {
131  for (const ParticleData &data : particles) {
132  write_particledata(data);
133  }
134 }

◆ create_oscar_output()

std::unique_ptr< OutputInterface > smash::create_oscar_output ( const std::string &  format,
const std::string &  content,
const std::filesystem::path &  path,
const OutputParameters out_par 
)
Returns
A new OscarOutput object using information from config to select the correct implementation.
Parameters
[in]formatThe output format as string, e.g. "Oscar2013"
[in]contentThe output content as string, e.g. "Particles"
[in]pathThe path to the output directory where the file(s) will be placed.
[in]out_parA structure containing parameters of the output, in particular if it is extended or not, if printing only final particles in event, etc.

Definition at line 889 of file oscaroutput.cc.

891  {
892  if (format != "Oscar2013" && format != "Oscar1999" && format != "ASCII") {
893  throw std::invalid_argument("Creating Oscar output: unknown format");
894  }
895  const bool modern_format = (format == "Oscar2013");
896  const bool custom_format = (format == "ASCII");
897  if (content == "Particles") {
898  if (out_par.part_only_final == OutputOnlyFinal::Yes) {
899  return create_select_format<OscarParticlesAtEventend>(
900  modern_format, path, out_par, "particle_lists", custom_format);
901  } else if (out_par.part_only_final == OutputOnlyFinal::IfNotEmpty) {
902  return create_select_format<OscarParticlesAtEventendIfNotEmpty>(
903  modern_format, path, out_par, "particle_lists", custom_format);
904 
905  } else { // out_par.part_only_final == OutputOnlyFinal::No
908  modern_format, path, out_par, "particle_lists", custom_format);
909  }
910  } else if (content == "Collisions") {
911  if (out_par.coll_printstartend) {
914  modern_format, path, out_par, "full_event_history", custom_format);
915  } else {
916  return create_select_format<OscarInteractions>(
917  modern_format, path, out_par, "full_event_history", custom_format);
918  }
919  } else if (content == "Dileptons") {
920  if (modern_format && out_par.dil_extended) {
921  return std::make_unique<
922  OscarOutput<OscarFormat2013Extended, OscarInteractions>>(path,
923  "Dileptons");
924  } else if (modern_format && !out_par.dil_extended) {
925  return std::make_unique<OscarOutput<OscarFormat2013, OscarInteractions>>(
926  path, "Dileptons");
927  } else if (!modern_format && !out_par.dil_extended) {
928  return std::make_unique<OscarOutput<OscarFormat1999, OscarInteractions>>(
929  path, "Dileptons");
930  } else if (!custom_format && !modern_format && out_par.dil_extended) {
931  logg[LOutput].warn()
932  << "Creating Oscar output: "
933  << "There is no extended Oscar1999 (dileptons) format.";
934  }
935  } else if (content == "Photons") {
936  if (modern_format && !out_par.photons_extended) {
937  return std::make_unique<OscarOutput<OscarFormat2013, OscarInteractions>>(
938  path, "Photons");
939  } else if (modern_format && out_par.photons_extended) {
940  return std::make_unique<
941  OscarOutput<OscarFormat2013Extended, OscarInteractions>>(path,
942  "Photons");
943  } else if (!modern_format && !out_par.photons_extended) {
944  return std::make_unique<OscarOutput<OscarFormat1999, OscarInteractions>>(
945  path, "Photons");
946  } else if (!custom_format && !modern_format && out_par.photons_extended) {
947  logg[LOutput].warn()
948  << "Creating Oscar output: "
949  << "There is no extended Oscar1999 (photons) format.";
950  }
951  } else if (content == "Initial_Conditions") {
952  if (modern_format && !out_par.ic_extended) {
953  return std::make_unique<
954  OscarOutput<OscarFormat2013, OscarParticlesIC | OscarAtEventstart>>(
955  path, "SMASH_IC");
956  } else if (modern_format && out_par.ic_extended) {
957  return std::make_unique<OscarOutput<
959  path, "SMASH_IC");
960  } else if (!modern_format && !out_par.ic_extended) {
961  return std::make_unique<
962  OscarOutput<OscarFormat1999, OscarParticlesIC | OscarAtEventstart>>(
963  path, "SMASH_IC");
964  } else if (!custom_format && !modern_format && out_par.ic_extended) {
965  logg[LOutput].warn()
966  << "Creating Oscar output: "
967  << "There is no extended Oscar1999 (initial conditions) format.";
968  }
969  }
970 
971  throw std::invalid_argument("Create_oscar_output got unknown content.");
972 }
@ IfNotEmpty
Print only final-state particles, and those only if the event is not empty.
@ Yes
Print only final-state particles.
std::unique_ptr< OutputInterface > create_select_format(bool modern_format, const std::filesystem::path &path, const OutputParameters &out_par, const std::string &name, const bool custom_format=false)
Helper function that creates the oscar output with the format selected by create_oscar_output (except...
Definition: oscaroutput.cc:861
static constexpr int LOutput

Variable Documentation

◆ file_

template<OscarOutputFormat Format, int Contents>
RenamingFilePtr smash::OscarOutput< Format, Contents >::file_
private

Full filepath of the output file.

Definition at line 136 of file oscaroutput.h.

◆ formatter_

template<OscarOutputFormat Format, int Contents>
OutputFormatter<ToASCII> smash::OscarOutput< Format, Contents >::formatter_
private

Formatter of the output.

Definition at line 139 of file oscaroutput.h.