Version: SMASH-3.2
smash::BinaryOutputCollisions Class Reference

#include <binaryoutput.h>

Saves SMASH collision history to binary file.

This class writes each collision, decay and box wall crossing to the output file. Optionally, one can also write the initial and final particle lists to the same file. The output file is binary and has a block structure.

Details of the output format can be found on the wiki in the User Guide section, look for binary output.

Definition at line 150 of file binaryoutput.h.

Inheritance diagram for smash::BinaryOutputCollisions:
smash::BinaryOutputBase smash::OutputInterface

Public Member Functions

 BinaryOutputCollisions (const std::filesystem::path &path, std::string name, const OutputParameters &out_par, const std::vector< std::string > &quantities)
 Create binary particle output. More...
 
void at_eventstart (const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
 Writes the initial particle information list of an event to the binary output. More...
 
void at_eventend (const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
 Writes the final particle information list of an event to the binary output. More...
 
void at_interaction (const Action &action, const double density) override
 Writes an interaction block, including information about the incoming and outgoing particles, to the binary output. More...
 
- Public Member Functions inherited from smash::OutputInterface
 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 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 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...
 

Private Attributes

bool print_start_end_
 Write initial and final particles additonally to collisions? More...
 

Additional Inherited Members

- Protected Member Functions inherited from smash::BinaryOutputBase
 BinaryOutputBase (const std::filesystem::path &path, const std::string &mode, const std::string &name, const std::vector< std::string > &quantities)
 Create binary output base. More...
 
void write (const ToBinary::type &chunk)
 Write several bytes to the binary output. More...
 
void write (const char c)
 Write byte to binary output. More...
 
void write (const std::string &s)
 Write string to binary output. More...
 
void write (const double x)
 Write double to binary output. More...
 
void write (const FourVector &v)
 Write four-vector to binary output. More...
 
void write (const std::int32_t x)
 Write integer (32 bit) to binary output. More...
 
void write (const std::uint32_t x)
 Write unsigned integer (32 bit) to binary output. More...
 
void write (const std::uint16_t x)
 Write unsigned integer (16 bit) to binary output. More...
 
void write (const size_t x)
 Write a std::size_t to binary output. More...
 
void write (const Particles &particles)
 Write particle data of each particle in particles to binary output. More...
 
void write (const ParticleList &particles)
 Write each particle data entry to binary output. More...
 
void write_particledata (const ParticleData &p)
 Write particle data to binary output. More...
 
- Protected Attributes inherited from smash::BinaryOutputBase
RenamingFilePtr file_
 Binary particles output file path. More...
 
- Protected Attributes inherited from smash::OutputInterface
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...
 

Constructor & Destructor Documentation

◆ BinaryOutputCollisions()

smash::BinaryOutputCollisions::BinaryOutputCollisions ( const std::filesystem::path &  path,
std::string  name,
const OutputParameters out_par,
const std::vector< std::string > &  quantities 
)

Create binary particle output.

Parameters
[in]pathOutput path.
[in]nameName of the output.
[in]out_parA structure containing parameters of the output.
[in]quantitiesThe list of quantities printed to the output.

Definition at line 265 of file binaryoutput.cc.

268  : BinaryOutputBase(path / get_binary_filename(name, quantities), "wb", name,
269  quantities),
270  print_start_end_(out_par.coll_printstartend) {}
BinaryOutputBase(const std::filesystem::path &path, const std::string &mode, const std::string &name, const std::vector< std::string > &quantities)
Create binary output base.
bool print_start_end_
Write initial and final particles additonally to collisions?
Definition: binaryoutput.h:194
static auto get_binary_filename(const std::string &content, const std::vector< std::string > &quantities)
Definition: binaryoutput.cc:28

Member Function Documentation

◆ at_eventstart()

void smash::BinaryOutputCollisions::at_eventstart ( const Particles particles,
const EventLabel event_label,
const EventInfo event 
)
overridevirtual

Writes the initial particle information list of an event to the binary output.

Parameters
[in]particlesCurrent list of all particles.
[in]event_labelNumbers of event and ensemble.
[in]eventEvent info, see event_info

Reimplemented from smash::OutputInterface.

Definition at line 272 of file binaryoutput.cc.

274  {
275  const char pchar = 'p';
276  if (print_start_end_) {
277  std::fwrite(&pchar, sizeof(char), 1, file_.get());
278  write(event_label.event_number);
279  write(event_label.ensemble_number);
280  write(particles.size());
281  write(particles);
282  }
283 }
void write(const ToBinary::type &chunk)
Write several bytes to the binary output.
RenamingFilePtr file_
Binary particles output file path.
Definition: binaryoutput.h:127
FILE * get()
Get the underlying FILE* pointer.
Definition: file.cc:27

◆ at_eventend()

void smash::BinaryOutputCollisions::at_eventend ( const Particles particles,
const EventLabel event_label,
const EventInfo event 
)
overridevirtual

Writes the final particle information list of an event to the binary output.

Parameters
[in]particlesCurrent list of particles.
[in]event_labelNumbers of event and ensemble.
[in]eventEvent info, see event_info

Reimplemented from smash::OutputInterface.

Definition at line 285 of file binaryoutput.cc.

287  {
288  const char pchar = 'p';
289  if (print_start_end_) {
290  std::fwrite(&pchar, sizeof(char), 1, file_.get());
291  write(event_label.event_number);
292  write(event_label.ensemble_number);
293  write(particles.size());
294  write(particles);
295  }
296 
297  // Event end line
298  const char fchar = 'f';
299  std::fwrite(&fchar, sizeof(char), 1, file_.get());
300  write(event_label.event_number);
301  write(event_label.ensemble_number);
302  write(event.impact_parameter);
303  const char empty = event.empty_event;
304  write(empty);
305 
306  // Flush to disk
307  std::fflush(file_.get());
308 }

◆ at_interaction()

void smash::BinaryOutputCollisions::at_interaction ( const Action action,
const double  density 
)
overridevirtual

Writes an interaction block, including information about the incoming and outgoing particles, to the binary output.

Parameters
[in]actionAction that holds the information of the interaction.
[in]densityDensity at the interaction point.

Reimplemented from smash::OutputInterface.

Definition at line 310 of file binaryoutput.cc.

311  {
312  const char ichar = 'i';
313  std::fwrite(&ichar, sizeof(char), 1, file_.get());
314  write(action.incoming_particles().size());
315  write(action.outgoing_particles().size());
316  std::fwrite(&density, sizeof(double), 1, file_.get());
317  const double weight = action.get_total_weight();
318  std::fwrite(&weight, sizeof(double), 1, file_.get());
319  const double partial_weight = action.get_partial_weight();
320  std::fwrite(&partial_weight, sizeof(double), 1, file_.get());
321  const auto type = static_cast<uint32_t>(action.get_type());
322  std::fwrite(&type, sizeof(uint32_t), 1, file_.get());
323  write(action.incoming_particles());
324  write(action.outgoing_particles());
325 }

Member Data Documentation

◆ print_start_end_

bool smash::BinaryOutputCollisions::print_start_end_
private

Write initial and final particles additonally to collisions?

Definition at line 194 of file binaryoutput.h.


The documentation for this class was generated from the following files: