#include <outputinterface.h>
Abstraction of generic output.
Any output should inherit this class. It provides virtual methods that will be called at predefined moments: 1) At event start and event end: at_eventstart, at_eventend 2) After every fixed time period: at_intermediate_time, thermodynamics_output 3) At each interaction: at_interaction
EventLabel
parameter and some just an integer. The former contains both the number of event and the number of ensemble while the latter is meant to be the number of the event, only. Passing the number of event only is meant to emphasise that the method will combine input from different ensembles, when multiple are used. Definition at line 111 of file outputinterface.h.
Public Member Functions | |
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 Particles &, const EventLabel &, const EventInfo &) |
Output launched at event start after initialization, when particles are generated but not yet propagated. 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 ThermodynamicQuantity) |
Output launched at event end. More... | |
virtual void | at_eventend (const Particles &, const EventLabel &, const EventInfo &) |
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_interaction (const Action &, const double) |
Called whenever an action modified one or more particles. More... | |
virtual void | at_intermediate_time (const Particles &, const std::unique_ptr< Clock > &, const DensityParameters &, const EventLabel &, const EventInfo &) |
Output launched after every N'th time-step. 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... | |
Protected Attributes | |
const bool | is_dilepton_output_ |
Is this the dilepton output? More... | |
const bool | is_photon_output_ |
Is this the photon output? More... | |
const bool | is_IC_output_ |
Is this the IC output? More... | |
|
inlineexplicit |
Construct output interface.
[in] | name | (File)name of output. |
Definition at line 117 of file outputinterface.h.
|
inlinepure virtualdefault |
Pure virtual destructor to make class abstract and prevent its instantiation.
It needs a definition which is done outside the class.
|
inlinevirtual |
Output launched at event start after initialization, when particles are generated but not yet propagated.
Reimplemented in smash::VtkOutput, smash::RootOutput, smash::OscarOutput< Format, Contents >, smash::HepMcInterface, smash::BinaryOutputParticles, smash::BinaryOutputCollisions, smash::ICOutput, and smash::BinaryOutputInitialConditions.
Definition at line 131 of file outputinterface.h.
|
inlinevirtual |
Output launched at event start after initialization, when particles are generated but not yet propagated.
Reimplemented in smash::ThermodynamicOutput.
Definition at line 138 of file outputinterface.h.
|
inlinevirtual |
Output launched at event start after initialization, when particles are generated but not yet propagated.
Reimplemented in smash::ThermodynamicLatticeOutput.
Definition at line 144 of file outputinterface.h.
|
inlinevirtual |
Output launched at event start after initialization, when particles are generated but not yet propagated.
Reimplemented in smash::ThermodynamicLatticeOutput.
Definition at line 152 of file outputinterface.h.
|
inlinevirtual |
Output launched at event end.
Event end is determined by maximal time-step option.
Reimplemented in smash::ThermodynamicLatticeOutput.
Definition at line 160 of file outputinterface.h.
|
inlinevirtual |
Output launched at event end.
Event end is determined by maximal time-step option.
Reimplemented in smash::VtkOutput, smash::RootOutput, smash::RivetOutput, smash::OscarOutput< Format, Contents >, smash::ICOutput, smash::HepMcOutput, smash::HepMcInterface, smash::BinaryOutputInitialConditions, smash::BinaryOutputParticles, and smash::BinaryOutputCollisions.
Definition at line 166 of file outputinterface.h.
|
inlinevirtual |
Output launched at event end.
Event end is determined by maximal time-step option.
Reimplemented in smash::ThermodynamicOutput.
Definition at line 172 of file outputinterface.h.
|
inlinevirtual |
Called whenever an action modified one or more particles.
Reimplemented in smash::ICOutput, smash::BinaryOutputInitialConditions, smash::RootOutput, smash::OscarOutput< Format, Contents >, smash::HepMcInterface, and smash::BinaryOutputCollisions.
Definition at line 177 of file outputinterface.h.
|
inlinevirtual |
Output launched after every N'th time-step.
N is controlled by an option.
Reimplemented in smash::VtkOutput, smash::RootOutput, smash::OscarOutput< Format, Contents >, smash::BinaryOutputParticles, and smash::ICOutput.
Definition at line 182 of file outputinterface.h.
|
inlinevirtual |
Output launched after every N'th timestep.
N is controlled by an option.
Reimplemented in smash::ThermodynamicOutput.
Definition at line 189 of file outputinterface.h.
|
inlinevirtual |
Output to write thermodynamics from the lattice.
Used for vtk output.
Reimplemented in smash::VtkOutput.
Definition at line 197 of file outputinterface.h.
|
inlinevirtual |
Output to write energy-momentum tensor and related quantities from the lattice.
Used for vtk output.
Reimplemented in smash::VtkOutput.
Definition at line 205 of file outputinterface.h.
|
inlinevirtual |
Output to write thermodynamics from the lattice.
Used for thermodynamic lattice output.
Reimplemented in smash::ThermodynamicLatticeOutput.
Definition at line 213 of file outputinterface.h.
|
inlinevirtual |
Output to write thermodynamics from the lattice.
Used for thermodynamic lattice output.
Reimplemented in smash::ThermodynamicLatticeOutput.
Definition at line 220 of file outputinterface.h.
|
inlinevirtual |
Output to write energy-momentum tensor and related quantities from the lattice.
Used for thermodynamic lattice output.
Reimplemented in smash::ThermodynamicLatticeOutput.
Definition at line 228 of file outputinterface.h.
|
inlinevirtual |
Output to write energy-momentum tensor and related quantities from the thermalizer class.
Only used for vtk output. Not connected to ThermodynamicOutput.
Reimplemented in smash::VtkOutput.
Definition at line 237 of file outputinterface.h.
|
inlinevirtual |
Write fields in vtk output Fields are a pair of threevectors for example electric and magnetic field.
Reimplemented in smash::VtkOutput.
Definition at line 243 of file outputinterface.h.
|
inline |
|
inline |
|
inline |
|
inline |
Convert thermodynamic quantities to strings.
[in] | tq | Enum value of the thermodynamic quantity. |
Definition at line 261 of file outputinterface.h.
|
inline |
Convert density types to strings.
[in] | dens_type | enum value of the density type |
Definition at line 282 of file outputinterface.h.
|
protected |
Is this the dilepton output?
Definition at line 306 of file outputinterface.h.
|
protected |
Is this the photon output?
Definition at line 309 of file outputinterface.h.
|
protected |
Is this the IC output?
Definition at line 312 of file outputinterface.h.