10 #ifndef SRC_INCLUDE_SMASH_BINARYOUTPUT_H_
11 #define SRC_INCLUDE_SMASH_BINARYOUTPUT_H_
43 const std::string &mode,
const std::string &name,
44 const std::vector<std::string> &quantities);
58 void write(
const char c);
64 void write(
const std::string &s);
70 void write(
const double x);
82 void write(
const std::int32_t x) {
83 std::fwrite(&x,
sizeof(x), 1,
file_.
get());
90 void write(
const std::uint32_t x) {
91 std::fwrite(&x,
sizeof(x), 1,
file_.
get());
98 void write(
const std::uint16_t x) {
99 std::fwrite(&x,
sizeof(x), 1,
file_.
get());
106 void write(
const size_t x) {
write(smash::numeric_cast<uint32_t>(x)); }
118 void write(
const ParticleList &particles);
162 const std::vector<std::string> &quantities);
224 const std::vector<std::string> &quantities);
253 const std::unique_ptr<Clock> &clock,
287 const std::vector<std::string> &quantities);
329 const std::string &
format,
const std::string &content,
Action is the base class for a generic process that takes a number of incoming particles and transfor...
Base class for SMASH binary output.
void write(const std::uint16_t x)
Write unsigned integer (16 bit) to binary output.
void write(const ToBinary::type &chunk)
Write several bytes to the binary output.
void write_particledata(const ParticleData &p)
Write particle data to binary output.
const uint16_t format_version_
Binary file format version number.
const uint16_t format_custom_
Format variant number associated to the custom quantities case.
OutputFormatter< ToBinary > formatter_
The output formatter.
RenamingFilePtr file_
Binary particles output file path.
BinaryOutputBase(const std::filesystem::path &path, const std::string &mode, const std::string &name, const std::vector< std::string > &quantities)
Create binary output base.
void write(const std::int32_t x)
Write integer (32 bit) to binary output.
void write(const size_t x)
Write a std::size_t to binary output.
void write(const std::uint32_t x)
Write unsigned integer (32 bit) to binary output.
Saves SMASH collision history to binary file.
void at_interaction(const Action &action, const double density) override
Writes an interaction block, including information about the incoming and outgoing particles,...
void at_eventstart(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Writes the initial particle information list of an event to the binary output.
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Writes the final particle information list of an event to the binary output.
BinaryOutputCollisions(const std::filesystem::path &path, std::string name, const OutputParameters &out_par, const std::vector< std::string > &quantities)
Create binary particle output.
bool print_start_end_
Write initial and final particles additonally to collisions?
Writes the particles when crossing the hypersurface to the binary file.
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Writes the final particle information of an event to the binary output.
BinaryOutputInitialConditions(const std::filesystem::path &path, std::string name, const std::vector< std::string > &quantities)
Create binary initial conditions particle output.
void at_interaction(const Action &action, const double) override
Writes particles that are removed when crossing the hypersurface to the output.
void at_eventstart(const Particles &, const EventLabel &, const EventInfo &) override
Writes the initial particle information of an event to the binary output.
Writes the particle list at specific times to the binary file.
void at_eventstart(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Writes the initial particle information of an event to the binary output.
void 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 particles at each time interval; fixed by option OUTPUT_INTERVAL.
OutputOnlyFinal only_final_
Whether final- or initial-state particles should be written.
BinaryOutputParticles(const std::filesystem::path &path, std::string name, const OutputParameters &out_par, const std::vector< std::string > &quantities)
Create binary particle output.
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Writes the final particle information of an event to the binary output.
A class to pre-calculate and store parameters relevant for density calculation.
The FourVector class holds relevant values in Minkowski spacetime with (+, −, −, −) metric signature.
Abstraction of generic output.
ParticleData contains the dynamic information of a certain particle.
The Particles class abstracts the storage and manipulation of particles.
A RAII type to replace std::FILE *.
FILE * get()
Get the underlying FILE* pointer.
std::vector< char > type
Return type of this converter.
OutputOnlyFinal
Whether and when only final state particles should be printed.
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...
std::unique_ptr< OutputInterface > 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.
Structure to contain custom data for output.
Structure to contain information about the event and ensemble numbers.
Helper structure for Experiment to hold output options and parameters.