18 #include "smash/config.h"
29 const std::vector<std::string> &quantities) {
30 std::string filename = content;
31 if (content ==
"Particles" || content ==
"Collisions") {
32 std::transform(filename.begin(), filename.end(), filename.begin(),
33 [](
unsigned char c) { return std::tolower(c); });
35 filename +=
"_oscar2013";
37 filename +=
"_oscar2013_extended";
39 filename +=
"_binary";
41 }
else if (content ==
"Photons" || content ==
"Dileptons") {
43 }
else if (content ==
"Initial_Conditions") {
44 filename =
"SMASH_IC";
46 throw std::invalid_argument(
47 "Unknown content to get the binary output filename.");
49 return filename +
".bin";
205 const std::string &mode,
206 const std::string &name,
207 const std::vector<std::string> &quantities)
209 if (quantities.empty()) {
210 throw std::invalid_argument(
211 "Empty quantities list passed to 'BinaryOutputBase' cconstructor.");
213 std::fwrite(
"SMSH", 4, 1,
file_.
get());
215 std::uint16_t format_variant{};
223 write(format_variant);
224 write(SMASH_VERSION);
229 std::fwrite(&c,
sizeof(
char), 1,
file_.
get());
232 std::fwrite(chunk.data(),
sizeof(
char), chunk.size(),
file_.
get());
236 const auto size = smash::numeric_cast<uint32_t>(s.size());
237 std::fwrite(&size,
sizeof(std::uint32_t), 1,
file_.
get());
238 std::fwrite(s.c_str(), s.size(), 1,
file_.
get());
242 std::fwrite(&x,
sizeof(x), 1,
file_.
get());
250 for (
const auto &
p : particles) {
256 for (
const auto &
p : particles) {
266 const std::filesystem::path &path, std::string name,
267 const OutputParameters &out_par,
const std::vector<std::string> &quantities)
270 print_start_end_(out_par.coll_printstartend) {}
275 const char pchar =
'p';
277 std::fwrite(&pchar,
sizeof(
char), 1,
file_.
get());
288 const char pchar =
'p';
290 std::fwrite(&pchar,
sizeof(
char), 1,
file_.
get());
298 const char fchar =
'f';
299 std::fwrite(&fchar,
sizeof(
char), 1,
file_.
get());
303 const char empty =
event.empty_event;
311 const double density) {
312 const char ichar =
'i';
313 std::fwrite(&ichar,
sizeof(
char), 1,
file_.
get());
316 std::fwrite(&density,
sizeof(
double), 1,
file_.
get());
318 std::fwrite(&weight,
sizeof(
double), 1,
file_.
get());
320 std::fwrite(&partial_weight,
sizeof(
double), 1,
file_.
get());
321 const auto type =
static_cast<uint32_t
>(action.
get_type());
322 std::fwrite(&type,
sizeof(uint32_t), 1,
file_.
get());
328 const std::filesystem::path &path, std::string name,
329 const OutputParameters &out_par,
const std::vector<std::string> &quantities)
332 only_final_(out_par.part_only_final) {}
337 const char pchar =
'p';
339 std::fwrite(&pchar,
sizeof(
char), 1,
file_.
get());
350 const char pchar =
'p';
352 std::fwrite(&pchar,
sizeof(
char), 1,
file_.
get());
360 const char fchar =
'f';
361 std::fwrite(&fchar,
sizeof(
char), 1,
file_.
get());
365 const char empty =
event.empty_event;
373 const std::unique_ptr<Clock> &,
377 const char pchar =
'p';
379 std::fwrite(&pchar,
sizeof(
char), 1,
file_.
get());
388 const std::filesystem::path &path, std::string name,
389 const std::vector<std::string> &quantities)
401 const char fchar =
'f';
402 std::fwrite(&fchar,
sizeof(
char), 1,
file_.
get());
406 const char empty =
event.empty_event;
416 "End time might be too small for initial conditions output. "
417 "Hypersurface has not yet been crossed by ",
418 particles.
size(),
" particle(s).");
425 const char pchar =
'p';
426 std::fwrite(&pchar,
sizeof(
char), 1,
file_.
get());
433 const std::string &
format,
435 const bool is_extended = std::invoke([&content, ¶meters]() {
436 if (content ==
"Particles")
438 else if (content ==
"Collisions")
440 else if (content ==
"Dileptons")
442 else if (content ==
"Photons")
444 else if (content ==
"Initial_Conditions")
449 const auto default_quantities =
452 if (
format ==
"Oscar2013_bin" || content ==
"Dileptons" ||
453 content ==
"Photons" || content ==
"Initial_Conditions") {
454 return default_quantities;
455 }
else if (
format ==
"Binary") {
456 if (content ==
"Particles" || content ==
"Collisions") {
457 auto list_of_quantities = parameters.
quantities.at(content);
458 if (list_of_quantities.empty()) {
459 return default_quantities;
461 return list_of_quantities;
467 throw std::invalid_argument(
468 "Unknown content to get the list of quantities for binary output.");
471 throw std::invalid_argument(
472 "Unknown format to get the list of quantities for binary output.");
477 const std::string &
format,
const std::string &content,
479 if (content ==
"Particles") {
480 return std::make_unique<BinaryOutputParticles>(
481 path, content, out_par,
483 }
else if (content ==
"Collisions" || content ==
"Dileptons" ||
484 content ==
"Photons") {
485 return std::make_unique<BinaryOutputCollisions>(
486 path, content, out_par,
488 }
else if (content ==
"Initial_Conditions") {
489 return std::make_unique<BinaryOutputInitialConditions>(
492 throw std::invalid_argument(
"Binary output not available for '" + content +
Action is the base class for a generic process that takes a number of incoming particles and transfor...
virtual ProcessType get_type() const
Get the process type.
virtual double get_total_weight() const =0
Return the total weight value, which is mainly used for the weight output entry.
const ParticleList & incoming_particles() const
Get the list of particles that go into the action.
virtual double get_partial_weight() const =0
Return the specific weight for the chosen outgoing channel, which is mainly used for the partial weig...
const ParticleList & outgoing_particles() const
Get the list of particles that resulted from the action.
Base class for SMASH 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 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?
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.
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.
FILE * get()
Get the underlying FILE* pointer.
std::vector< char > type
Return type of this converter.
@ IfNotEmpty
Print only final-state particles, and those only if the event is not empty.
@ No
Print initial, intermediate and final-state particles.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
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.
static constexpr int LHyperSurfaceCrossing
@ HyperSurfaceCrossing
See here for a short description.
static auto get_list_of_binary_quantities(const std::string &content, const std::string &format, const OutputParameters ¶meters)
static auto get_binary_filename(const std::string &content, const std::vector< std::string > &quantities)
Structure to contain custom data for output.
bool empty_event
True if no collisions happened.
bool impose_kinematic_cut_for_SMASH_IC
Whether or not kinematic cuts are employed for SMASH IC.
double impact_parameter
Impact parameter for collider modus, otherwise dummy.
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.
static const std::vector< std::string > oscar2013
Quantities output in OSCAR2013 format.
static const std::vector< std::string > oscar2013extended
Quantities output in Extended OSCAR2013 format.
Helper structure for Experiment to hold output options and parameters.
bool dil_extended
Extended format for dilepton output.
bool coll_extended
Extended format for collisions output.
bool part_extended
Extended format for particles output.
bool photons_extended
Extended format for photon output.
std::map< std::string, std::vector< std::string > > quantities
Map of quantities to be printed in the output.
bool ic_extended
Extended initial conditions output.