Version: SMASH-3.2
binaryoutput.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2014-2020,2022-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #ifndef SRC_INCLUDE_SMASH_BINARYOUTPUT_H_
11 #define SRC_INCLUDE_SMASH_BINARYOUTPUT_H_
12 #include <cstdint>
13 #include <memory>
14 #include <string>
15 #include <vector>
16 
17 #include "file.h"
18 #include "forwarddeclarations.h"
19 #include "numeric_cast.h"
20 #include "outputformatter.h"
21 #include "outputinterface.h"
22 #include "outputparameters.h"
23 
24 namespace smash {
25 
31  protected:
42  explicit BinaryOutputBase(const std::filesystem::path &path,
43  const std::string &mode, const std::string &name,
44  const std::vector<std::string> &quantities);
45 
52  void write(const ToBinary::type &chunk);
53 
58  void write(const char c);
59 
64  void write(const std::string &s);
65 
70  void write(const double x);
71 
76  void write(const FourVector &v);
77 
82  void write(const std::int32_t x) {
83  std::fwrite(&x, sizeof(x), 1, file_.get());
84  }
85 
90  void write(const std::uint32_t x) {
91  std::fwrite(&x, sizeof(x), 1, file_.get());
92  }
93 
98  void write(const std::uint16_t x) {
99  std::fwrite(&x, sizeof(x), 1, file_.get());
100  }
101 
106  void write(const size_t x) { write(smash::numeric_cast<uint32_t>(x)); }
107 
112  void write(const Particles &particles);
113 
118  void write(const ParticleList &particles);
119 
124  void write_particledata(const ParticleData &p);
125 
128 
129  private:
131  const uint16_t format_version_ = 10;
133  const uint16_t format_custom_ = 2;
136 };
137 
151  public:
160  BinaryOutputCollisions(const std::filesystem::path &path, std::string name,
161  const OutputParameters &out_par,
162  const std::vector<std::string> &quantities);
163 
171  void at_eventstart(const Particles &particles, const EventLabel &event_label,
172  const EventInfo &event) override;
173 
181  void at_eventend(const Particles &particles, const EventLabel &event_label,
182  const EventInfo &event) override;
183 
190  void at_interaction(const Action &action, const double density) override;
191 
192  private:
195 };
196 
213  public:
222  BinaryOutputParticles(const std::filesystem::path &path, std::string name,
223  const OutputParameters &out_par,
224  const std::vector<std::string> &quantities);
225 
232  void at_eventstart(const Particles &particles, const EventLabel &event_label,
233  const EventInfo &event) override;
234 
241  void at_eventend(const Particles &particles, const EventLabel &event_label,
242  const EventInfo &event) override;
243 
252  void at_intermediate_time(const Particles &particles,
253  const std::unique_ptr<Clock> &clock,
254  const DensityParameters &dens_param,
255  const EventLabel &event_label,
256  const EventInfo &event) override;
257 
258  private:
261 };
262 
277  public:
285  BinaryOutputInitialConditions(const std::filesystem::path &path,
286  std::string name,
287  const std::vector<std::string> &quantities);
288 
293  void at_eventstart(const Particles &, const EventLabel &,
294  const EventInfo &) override;
295 
302  void at_eventend(const Particles &particles, const EventLabel &event_label,
303  const EventInfo &event) override;
304 
311  void at_interaction(const Action &action, const double) override;
312 };
313 
328 std::unique_ptr<OutputInterface> create_binary_output(
329  const std::string &format, const std::string &content,
330  const std::filesystem::path &path, const OutputParameters &out_par);
331 
332 } // namespace smash
333 
334 #endif // SRC_INCLUDE_SMASH_BINARYOUTPUT_H_
Action is the base class for a generic process that takes a number of incoming particles and transfor...
Definition: action.h:35
Base class for SMASH binary output.
Definition: binaryoutput.h:30
void write(const std::uint16_t x)
Write unsigned integer (16 bit) to binary output.
Definition: binaryoutput.h:98
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.
Definition: binaryoutput.h:131
const uint16_t format_custom_
Format variant number associated to the custom quantities case.
Definition: binaryoutput.h:133
OutputFormatter< ToBinary > formatter_
The output formatter.
Definition: binaryoutput.h:135
RenamingFilePtr file_
Binary particles output file path.
Definition: binaryoutput.h:127
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.
Definition: binaryoutput.h:82
void write(const size_t x)
Write a std::size_t to binary output.
Definition: binaryoutput.h:106
void write(const std::uint32_t x)
Write unsigned integer (32 bit) to binary output.
Definition: binaryoutput.h:90
Saves SMASH collision history to binary file.
Definition: binaryoutput.h:150
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?
Definition: binaryoutput.h:194
Writes the particles when crossing the hypersurface to the binary file.
Definition: binaryoutput.h:276
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.
Definition: binaryoutput.h:212
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.
Definition: binaryoutput.h:260
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.
Definition: density.h:92
The FourVector class holds relevant values in Minkowski spacetime with (+, −, −, −) metric signature.
Definition: fourvector.h:33
A general-purpose formatter for output, supporting both ASCII and binary formats.
Abstraction of generic output.
ParticleData contains the dynamic information of a certain particle.
Definition: particledata.h:58
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
A RAII type to replace std::FILE *.
Definition: file.h:72
FILE * get()
Get the underlying FILE* pointer.
Definition: file.cc:27
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...
Definition: logging.h:217
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.
constexpr int p
Proton.
Definition: action.h:24
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.