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< 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. 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< OutputInterface > | smash::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< ToASCII > | smash::OscarOutput< Format, Contents >::formatter_ |
Formatter of the output. More... | |
Selector for the output format of OscarOutput.
Enumerator | |
---|---|
OscarFormat2013 | |
OscarFormat2013Extended | |
OscarFormat1999 | |
ASCII |
Definition at line 31 of file oscaroutput.h.
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.
Definition at line 45 of file oscaroutput.h.
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.
[in] | format | The output format as string, e.g. "Oscar2013" |
[in] | content | The output content as string, e.g. "Particles" |
[in] | path | The path to the output directory |
[in] | out_par | The output parameters object containing output metadata |
std::unique_ptr<OutputInterface>
polymorphically initialised to the correct binary output object. Definition at line 476 of file binaryoutput.cc.
smash::OscarOutput< Format, Contents >::OscarOutput | ( | const std::filesystem::path & | path, |
const std::string & | name, | ||
const std::vector< std::string > | quantities = {} |
||
) |
Create oscar output.
[in] | path | Output path. |
[in] | name | Name of the ouput. |
[in] | quantities | List of quantities present in the output file. |
|
overridevirtual |
Writes the initial particle information of an event to the oscar output.
[in] | particles | Current list of all particles. |
[in] | event_label | Numbers of event and ensemble. |
[in] | event | Event info, see event_info |
Reimplemented from smash::OutputInterface.
Definition at line 137 of file oscaroutput.cc.
|
overridevirtual |
Writes the final particle information of an event to the oscar output.
[in] | particles | Current list of particles. |
[in] | event_label | Numbers of event and ensemble. |
[in] | event | Event info, see event_info |
Reimplemented from smash::OutputInterface.
Definition at line 171 of file oscaroutput.cc.
|
overridevirtual |
Writes a interaction prefix line and a line for every incoming and outgoing particle to the oscar output.
[in] | action | Action that holds the information of the interaction. |
[in] | density | Density at the interaction point. |
Reimplemented from smash::OutputInterface.
Definition at line 227 of file oscaroutput.cc.
|
overridevirtual |
Writes a prefix line then write out all current particles.
[in] | particles | Current list of particles. |
[in] | clock | Unused, needed since inherited. |
[in] | dens_param | Unused, needed since inherited. |
[in] | event_label | Numbers of event and ensemble. |
[in] | event | Event info, see event_info |
Reimplemented from smash::OutputInterface.
Definition at line 266 of file oscaroutput.cc.
|
private |
Write single particle information line to output.
[in] | data | Data of particle. |
Definition at line 842 of file oscaroutput.cc.
|
inlineprivate |
Write the particle information of a list of particles to the output.
One line per particle.
[in] | particles | List of particles to be written |
Definition at line 130 of file oscaroutput.cc.
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 | ||
) |
config
to select the correct implementation.[in] | format | The output format as string, e.g. "Oscar2013" |
[in] | content | The output content as string, e.g. "Particles" |
[in] | path | The path to the output directory where the file(s) will be placed. |
[in] | out_par | A 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.
|
private |
Full filepath of the output file.
Definition at line 136 of file oscaroutput.h.
|
private |
Formatter of the output.
Definition at line 139 of file oscaroutput.h.