template<OscarOutputFormat Format, int Contents>
class smash::OscarOutput< Format, Contents >
- Template Parameters
-
Format | Determines the variant of OSCAR formatting that is used. See OscarOutputFormat. |
Contents | Determines what information will be written to file. This integer is a bitflag that can be constructed from ORing enumerators from OscarOutputContents together. |
Definition at line 65 of file oscaroutput.h.
|
| OscarOutput (const std::filesystem::path &path, const std::string &name) |
| Create oscar output. More...
|
|
void | at_eventstart (const Particles &particles, const int event_number, const EventInfo &event) override |
| Writes the initial particle information of an event to the oscar output. More...
|
|
void | at_eventend (const Particles &particles, const int event_number, const EventInfo &) override |
| Writes the final particle information of an event to the oscar output. More...
|
|
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 output. More...
|
|
void | at_intermediate_time (const Particles &particles, const std::unique_ptr< Clock > &clock, const DensityParameters &dens_param, const EventInfo &event) override |
| Writes a prefix line then write out all current particles. More...
|
|
| OutputInterface (std::string name) |
| Construct output interface. More...
|
|
virtual | ~OutputInterface ()=0 |
| Pure virtual destructor to make class abstract and prevent its instantiation. More...
|
|
virtual void | at_eventstart (const std::vector< Particles > &, int) |
| Output launched at event start after initialization, when particles are generated but not yet propagated. More...
|
|
virtual void | at_eventstart (const int, const ThermodynamicQuantity, const DensityType, RectangularLattice< DensityOnLattice >) |
| Output launched at event start after initialization, when particles are generated but not yet propagated. More...
|
|
virtual void | at_eventstart (const int, const ThermodynamicQuantity, const DensityType, RectangularLattice< EnergyMomentumTensor >) |
| Output launched at event start after initialization, when particles are generated but not yet propagated. More...
|
|
virtual void | at_eventend (const int, const ThermodynamicQuantity, const DensityType) |
| Output launched at event end. More...
|
|
virtual void | at_eventend (const ThermodynamicQuantity) |
| Output launched at event end. More...
|
|
virtual void | at_eventend (const std::vector< Particles > &, const int) |
| Output launched at event end. More...
|
|
virtual void | at_intermediate_time (const std::vector< Particles > &, const std::unique_ptr< Clock > &, const DensityParameters &) |
| Output launched after every N'th timestep. More...
|
|
virtual void | thermodynamics_output (const ThermodynamicQuantity, const DensityType, RectangularLattice< DensityOnLattice > &) |
| Output to write thermodynamics from the lattice. More...
|
|
virtual void | thermodynamics_output (const ThermodynamicQuantity, const DensityType, RectangularLattice< EnergyMomentumTensor > &) |
| Output to write energy-momentum tensor and related quantities from the lattice. More...
|
|
virtual void | thermodynamics_lattice_output (RectangularLattice< DensityOnLattice > &, const double) |
| Output to write thermodynamics from the lattice. More...
|
|
virtual void | thermodynamics_lattice_output (RectangularLattice< DensityOnLattice > &, const double, const std::vector< Particles > &, const DensityParameters &) |
| Output to write thermodynamics from the lattice. More...
|
|
virtual void | thermodynamics_lattice_output (const ThermodynamicQuantity, RectangularLattice< EnergyMomentumTensor > &, const double) |
| Output to write energy-momentum tensor and related quantities from the lattice. More...
|
|
virtual void | thermodynamics_output (const GrandCanThermalizer &) |
| Output to write energy-momentum tensor and related quantities from the thermalizer class. More...
|
|
virtual void | fields_output (const std::string, const std::string, RectangularLattice< std::pair< ThreeVector, ThreeVector >> &) |
| Write fields in vtk output Fields are a pair of threevectors for example electric and magnetic field. More...
|
|
bool | is_dilepton_output () const |
| Get, whether this is the dilepton output? More...
|
|
bool | is_photon_output () const |
| Get, whether this is the photon output? More...
|
|
bool | is_IC_output () const |
| Get, whether this is the IC output? More...
|
|
const char * | to_string (const ThermodynamicQuantity tq) |
| Convert thermodynamic quantities to strings. More...
|
|
const char * | to_string (const DensityType dens_type) |
| Convert density types to strings. More...
|
|