10 #ifndef SRC_INCLUDE_SMASH_OUTPUTFORMATTER_H_
11 #define SRC_INCLUDE_SMASH_OUTPUTFORMATTER_H_
55 constexpr
size_t kBufferSize = 13;
56 char buffer[kBufferSize];
57 const auto length = std::snprintf(buffer, kBufferSize,
"%g", value);
58 assert(
static_cast<size_t>(length) < kBufferSize);
60 return std::string{buffer, buffer + length};
78 constexpr
size_t kBufferSize = 16;
79 char buffer[kBufferSize];
80 const auto length = std::snprintf(buffer, kBufferSize,
"%.9g", value);
81 assert(
static_cast<size_t>(length) < kBufferSize);
83 return std::string{buffer, buffer + length};
102 using type = std::vector<char>;
138 type binary_data(str.begin(), str.end());
149 template <
typename T>
151 type binary_data(
sizeof(T));
152 std::memcpy(binary_data.data(), &value,
sizeof(T));
175 template <
typename Converter,
176 std::enable_if_t<std::is_same_v<Converter, ToASCII> ||
177 std::is_same_v<Converter, ToBinary>,
198 if (quantity ==
"t") {
202 }
else if (quantity ==
"x") {
206 }
else if (quantity ==
"y") {
210 }
else if (quantity ==
"z") {
214 }
else if (quantity ==
"mass") {
218 }
else if (quantity ==
"p0") {
222 }
else if (quantity ==
"px") {
226 }
else if (quantity ==
"py") {
230 }
else if (quantity ==
"pz") {
234 }
else if (quantity ==
"pdg") {
238 }
else if (quantity ==
"ID" || quantity ==
"id") {
242 }
else if (quantity ==
"charge") {
246 }
else if (quantity ==
"ncoll") {
251 }
else if (quantity ==
"form_time") {
255 }
else if (quantity ==
"xsecfac") {
259 }
else if (quantity ==
"proc_id_origin") {
263 }
else if (quantity ==
"proc_type_origin") {
268 }
else if (quantity ==
"time_last_coll") {
273 }
else if (quantity ==
"pdg_mother1") {
277 }
else if (quantity ==
"pdg_mother2") {
281 }
else if (quantity ==
"baryon_number") {
285 }
else if (quantity ==
"strangeness") {
289 }
else if (quantity ==
"0") {
304 return std::accumulate(
306 [&
p](std::vector<char> ss,
const auto& getter) {
307 auto binary_data = getter(
p);
308 ss.insert(ss.end(), binary_data.begin(), binary_data.end());
320 return std::accumulate(
322 [&
p](
const std::string& ss,
const auto& getter) {
323 return ss.empty() ? getter(
p) : ss +
" " + getter(
p);
332 return std::accumulate(
334 [
this](
const std::string& ss,
const std::string& s) {
335 return ss.empty() ? this->
converter_.as_string(s)
345 return std::accumulate(
347 [
this](
const std::string& ss,
const std::string& s) {
362 std::vector<std::function<
typename Converter::type(
const ParticleData&)>>
366 const std::map<std::string, std::string>
units_ = {
383 {
"proc_id_origin",
"none"},
384 {
"proc_type_origin",
"none"},
385 {
"time_last_coll",
"fm"},
386 {
"pdg_mother1",
"none"},
387 {
"pdg_mother2",
"none"},
388 {
"baryon_number",
"none"},
389 {
"strangeness",
"none"},
395 throw std::invalid_argument(
396 "OutputFormatter: Empty quantities handed over to the class.");
398 std::string error_message{};
399 std::string repeated{};
402 repeated +=
"'" + quantity +
"',";
405 if (!repeated.empty()) {
406 error_message +=
"Repeated \"Quantities\": " + repeated +
407 " please fix the configuration file.\n";
409 std::string unknown{};
411 if (
units_.count(quantity) == 0) {
412 unknown +=
"'" + quantity +
"',";
415 if (!unknown.empty()) {
416 error_message +=
"Unknown \"Quantities\": " + unknown +
417 " please fix the configuration file.\n";
419 if (!repeated.empty() || !unknown.empty())
420 throw std::invalid_argument(error_message);
422 const bool oscar1999_id_is_given =
425 const bool oscar2013_id_is_given =
428 if (oscar1999_id_is_given && oscar2013_id_is_given) {
429 throw std::invalid_argument(
430 "Both 'id' and 'ID' cannot be provided in the \"Quantities\" key "
431 "together. Please, fix the configuration file.");
ParticleData contains the dynamic information of a certain particle.
PdgCode pdgcode() const
Get the pdgcode of the particle.
const ParticleType & type() const
Get the type of the particle.
double xsec_scaling_factor(double delta_time=0.) const
Return the cross section scaling factor at a given time.
const FourVector & momentum() const
Get the particle's 4-momentum.
double formation_time() const
Get the absolute formation time of the particle.
double effective_mass() const
Get the particle's effective mass.
int32_t id() const
Get the id of the particle.
HistoryData get_history() const
Get history information.
const FourVector & position() const
Get the particle's position in Minkowski space.
int32_t charge() const
The charge of the particle.
int baryon_number() const
int32_t get_decimal() const
Structure to convert a given value into binary format, such that all methods return a std::vector<cha...
type as_binary_data(T value) const
Template method to convert numbers into binary format.
type as_double(double value) const
Converts a double to binary format.
type as_precise_double(double value) const
Converts a double to binary format, intended for precise representation.
std::vector< char > type
Return type of this converter.
type as_integer(int value) const
Converts an integer to binary format.
type as_string(const std::string &str) const
Converts a string to binary format.
double time_last_collision
Time of the last action (excluding walls), time of kinetic freeze_out for HBT analysis this time shou...
int32_t id_process
id of the last action
PdgCode p2
PdgCode of the second parent particles.
PdgCode p1
PdgCode of the first parent particles.
int32_t collisions_per_particle
Collision counter per particle, zero only for initially present particles.
ProcessType process_type
type of the last action
Structure to convert a given value into ASCII format, such that all methods return a std::string.
type as_integer(int value) const
Converts an integer.
std::string type
Return type of this converter.
type as_double(double value)
Converts a double with 6 digits of precision.
type as_precise_double(double value)
Converts a double with 9 digits of precision.
type as_string(const std::string &str) const
Because ToASCII converts into strings, this simply returns the string itself.