Version: SMASH-3.2
outputinterface.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2014-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #ifndef SRC_INCLUDE_SMASH_OUTPUTINTERFACE_H_
11 #define SRC_INCLUDE_SMASH_OUTPUTINTERFACE_H_
12 
13 #include <memory>
14 #include <string>
15 #include <utility>
16 #include <vector>
17 
18 #include "density.h"
19 #include "energymomentumtensor.h"
20 #include "forwarddeclarations.h"
21 #include "grandcan_thermalizer.h"
22 #include "lattice.h"
23 #include "macros.h"
24 
25 namespace smash {
26 static constexpr int LOutput = LogArea::Output::id;
27 
38 struct EventInfo {
42  double modus_length;
44  double current_time;
50  double total_energy;
59 };
60 
71 struct EventLabel {
73  int32_t event_number;
75  int32_t ensemble_number;
76 };
77 
112  public:
117  explicit OutputInterface(std::string name)
118  : is_dilepton_output_(name == "Dileptons"),
119  is_photon_output_(name == "Photons"),
120  is_IC_output_(name == "SMASH_IC") {}
125  virtual ~OutputInterface() = 0;
126 
131  virtual void at_eventstart(const Particles &, const EventLabel &,
132  const EventInfo &) {}
133 
138  virtual void at_eventstart(const std::vector<Particles> &, int) {}
139 
144  virtual void at_eventstart(const int, const ThermodynamicQuantity,
145  const DensityType,
147 
152  virtual void at_eventstart(const int, const ThermodynamicQuantity,
153  const DensityType,
155 
160  virtual void at_eventend(const ThermodynamicQuantity) {}
161 
166  virtual void at_eventend(const Particles &, const EventLabel &,
167  const EventInfo &) {}
172  virtual void at_eventend(const std::vector<Particles> &, const int) {}
173 
177  virtual void at_interaction(const Action &, const double) {}
178 
182  virtual void at_intermediate_time(const Particles &,
183  const std::unique_ptr<Clock> &,
184  const DensityParameters &,
185  const EventLabel &, const EventInfo &) {}
189  virtual void at_intermediate_time(const std::vector<Particles> &,
190  const std::unique_ptr<Clock> &,
191  const DensityParameters &) {}
192 
198  const DensityType,
200 
205  virtual void thermodynamics_output(
206  const ThermodynamicQuantity, const DensityType,
208 
214  RectangularLattice<DensityOnLattice> &, const double) {}
215 
221  RectangularLattice<DensityOnLattice> &, const double,
222  const std::vector<Particles> &, const DensityParameters &) {}
223 
230  const double) {}
231 
238 
243  virtual void fields_output(
244  const std::string, const std::string,
245  RectangularLattice<std::pair<ThreeVector, ThreeVector>> &) {}
246 
248  bool is_dilepton_output() const { return is_dilepton_output_; }
249 
251  bool is_photon_output() const { return is_photon_output_; }
252 
254  bool is_IC_output() const { return is_IC_output_; }
255 
261  const char *to_string(const ThermodynamicQuantity tq) {
262  switch (tq) {
264  return "rho_eckart";
266  return "tmn";
268  return "tmn_landau";
270  return "v_landau";
272  return "j_QBS";
273  }
274  throw std::invalid_argument("Unknown thermodynamic quantity.");
275  }
276 
282  const char *to_string(const DensityType dens_type) {
283  switch (dens_type) {
284  case DensityType::Hadron:
285  return "hadron";
286  case DensityType::Baryon:
287  return "net_baryon";
289  return "net_baryonI3";
290  case DensityType::Pion:
291  return "pion";
293  return "tot_isospin3";
294  case DensityType::Charge:
295  return "charge";
297  return "strangeness";
298  case DensityType::None:
299  return "none";
300  }
301  throw std::invalid_argument("Unknown density type.");
302  }
303 
304  protected:
307 
309  const bool is_photon_output_;
310 
312  const bool is_IC_output_;
313 };
314 
315 inline OutputInterface::~OutputInterface() = default;
316 
317 } // namespace smash
318 
319 #endif // SRC_INCLUDE_SMASH_OUTPUTINTERFACE_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
The GrandCanThermalizer class implements the following functionality:
Abstraction of generic output.
virtual void at_eventstart(const std::vector< Particles > &, int)
Output launched at event start after initialization, when particles are generated but not yet propaga...
const bool is_photon_output_
Is this the photon output?
bool is_photon_output() const
Get, whether this is the photon output?
virtual void thermodynamics_lattice_output(RectangularLattice< DensityOnLattice > &, const double, const std::vector< Particles > &, const DensityParameters &)
Output to write thermodynamics from the lattice.
const bool is_dilepton_output_
Is this the dilepton output?
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 propaga...
virtual void at_interaction(const Action &, const double)
Called whenever an action modified one or more particles.
virtual void at_eventend(const ThermodynamicQuantity)
Output launched at event end.
virtual void at_eventend(const std::vector< Particles > &, const int)
Output launched at event end.
const bool is_IC_output_
Is this the IC output?
OutputInterface(std::string name)
Construct output interface.
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.
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 propaga...
virtual void thermodynamics_lattice_output(RectangularLattice< DensityOnLattice > &, const double)
Output to write thermodynamics from the lattice.
const char * to_string(const DensityType dens_type)
Convert density types to strings.
const char * to_string(const ThermodynamicQuantity tq)
Convert thermodynamic quantities to strings.
virtual void at_intermediate_time(const std::vector< Particles > &, const std::unique_ptr< Clock > &, const DensityParameters &)
Output launched after every N'th timestep.
virtual void thermodynamics_output(const GrandCanThermalizer &)
Output to write energy-momentum tensor and related quantities from the thermalizer class.
virtual void at_eventend(const Particles &, const EventLabel &, const EventInfo &)
Output launched at event end.
virtual ~OutputInterface()=0
Pure virtual destructor to make class abstract and prevent its instantiation.
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.
virtual void at_eventstart(const Particles &, const EventLabel &, const EventInfo &)
Output launched at event start after initialization, when particles are generated but not yet propaga...
bool is_dilepton_output() const
Get, whether this is the dilepton output?
virtual void thermodynamics_lattice_output(const ThermodynamicQuantity, RectangularLattice< EnergyMomentumTensor > &, const double)
Output to write energy-momentum tensor and related quantities from the lattice.
virtual void thermodynamics_output(const ThermodynamicQuantity, const DensityType, RectangularLattice< DensityOnLattice > &)
Output to write thermodynamics from the lattice.
bool is_IC_output() const
Get, whether this is the IC output?
virtual void thermodynamics_output(const ThermodynamicQuantity, const DensityType, RectangularLattice< EnergyMomentumTensor > &)
Output to write energy-momentum tensor and related quantities from the lattice.
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
A container class to hold all the arrays on the lattice and access them.
Definition: lattice.h:49
ThermodynamicQuantity
Represents thermodynamic quantities that can be printed out See user guide description for more infor...
@ EckartDensity
Density in the Eckart frame.
@ Tmn
Energy-momentum tensor in lab frame.
@ LandauVelocity
Velocity of the Landau rest frame.
@ j_QBS
Electric (Q), baryonic (B) and strange (S) currents.
@ TmnLandau
Energy-momentum tensor in Landau rest frame.
DensityType
Allows to choose which kind of density to calculate.
Definition: action.h:24
static constexpr int LOutput
Structure to contain custom data for output.
double total_kinetic_energy
Sum of kinetic energies of all particles.
bool empty_event
True if no collisions happened.
double modus_length
Box length in case of box simulation, otherwise dummy.
double total_energy
Kinetic + mean field energy.
int n_ensembles
Number of ensembles.
double total_mean_field_energy
Total energy in the mean field.
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.
double current_time
Time in fm.
int test_particles
Testparticle number, see Testparticles in General.
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.