Version: SMASH-3.2
oscaroutput.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_OSCAROUTPUT_H_
11 #define SRC_INCLUDE_SMASH_OSCAROUTPUT_H_
12 
13 #include <memory>
14 #include <string>
15 #include <vector>
16 
17 #include "file.h"
18 #include "forwarddeclarations.h"
19 #include "outputinterface.h"
20 #include "outputparameters.h"
21 #include "smash/outputformatter.h"
22 
23 namespace smash {
24 
35  ASCII
36 };
37 
49  OscarTimesteps = 0x002,
57  OscarParticlesIC = 0x020
58 };
59 
67 template <OscarOutputFormat Format, int Contents>
68 class OscarOutput : public OutputInterface {
69  public:
77  OscarOutput(const std::filesystem::path &path, const std::string &name,
78  const std::vector<std::string> quantities = {});
79 
86  void at_eventstart(const Particles &particles, const EventLabel &event_label,
87  const EventInfo &event) override;
88 
95  void at_eventend(const Particles &particles, const EventLabel &event_label,
96  const EventInfo &event) override;
97 
104  void at_interaction(const Action &action, const double density) override;
105 
115  void at_intermediate_time(const Particles &particles,
116  const std::unique_ptr<Clock> &clock,
117  const DensityParameters &dens_param,
118  const EventLabel &event_label,
119  const EventInfo &event) override;
120 
121  private:
126  void write_particledata(const ParticleData &data);
127 
133  void write(const Particles &particles);
134 
137 
140 };
141 
154 std::unique_ptr<OutputInterface> create_oscar_output(
155  const std::string &format, const std::string &content,
156  const std::filesystem::path &path, const OutputParameters &out_par);
157 
158 // @}
159 
160 } // namespace smash
161 
162 #endif // SRC_INCLUDE_SMASH_OSCAROUTPUT_H_
Action is the base class for a generic process that takes a number of incoming particles and transfor...
Definition: action.h:35
A class to pre-calculate and store parameters relevant for density calculation.
Definition: density.h:92
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
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
OscarOutputContents
Flags for the Contents template parameter of OscarOutput.
Definition: oscaroutput.h:45
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 a prefix line then write out all current particles.
Definition: oscaroutput.cc:266
void write_particledata(const ParticleData &data)
Write single particle information line to output.
Definition: oscaroutput.cc:842
OscarOutputFormat
Selector for the output format of OscarOutput.
Definition: oscaroutput.h:31
void write(const Particles &particles)
Write the particle information of a list of particles to the output.
Definition: oscaroutput.cc:130
OscarOutput(const std::filesystem::path &path, const std::string &name, const std::vector< std::string > quantities={})
Create oscar output.
std::unique_ptr< OutputInterface > create_oscar_output(const std::string &format, const std::string &content, const std::filesystem::path &path, const OutputParameters &out_par)
Definition: oscaroutput.cc:889
OutputFormatter< ToASCII > formatter_
Formatter of the output.
Definition: oscaroutput.h:139
RenamingFilePtr file_
Full filepath of the output file.
Definition: oscaroutput.h:136
void 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.
Definition: oscaroutput.cc:171
void 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.
Definition: oscaroutput.cc:137
void 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 out...
Definition: oscaroutput.cc:227
@ OscarParticlesAtEventend
store the state at the end of each event (at_eventend)
Definition: oscaroutput.h:53
@ OscarParticlesAtEventendIfNotEmpty
store the state at the end of each event if it is not empty (at_eventend)
Definition: oscaroutput.h:55
@ OscarAtEventstart
store the state at the start of each event (at_eventstart)
Definition: oscaroutput.h:51
@ OscarInteractions
store interaction information (write_interaction)
Definition: oscaroutput.h:47
@ OscarParticlesIC
store the particles that are removed on the hypersurface
Definition: oscaroutput.h:57
@ OscarTimesteps
store the state after N timesteps (after_Nth_timestep)
Definition: oscaroutput.h:49
@ OscarFormat1999
Definition: oscaroutput.h:34
@ OscarFormat2013Extended
Definition: oscaroutput.h:33
@ ASCII
Definition: oscaroutput.h:35
@ OscarFormat2013
Definition: oscaroutput.h:32
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.