Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
EventWriter.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <iostream>
5#include <iomanip>
6
7#include "ThermalFISTConfig.h"
8
9namespace thermalfist {
10
11 EventWriter::EventWriter(const std::string& filename)
12 {
13 OpenFile(filename);
14 }
15
20
21 bool EventWriter::OpenFile(const std::string& filename)
22 {
23 if (m_fout.is_open())
24 m_fout.close();
25
26 m_fout.open(filename);
27
28 if (!m_fout.is_open()) {
29 std::cerr << "**ERROR** EventWriter::OpenFile(): Could not open file " << filename << std::endl;
30 return false;
31 }
32
33 m_EventNumber = 0;
34
35 return true;
36 }
37
39 {
40 if (m_fout.is_open()) {
41 m_fout.close();
42 }
43 }
44
46 {
47 if (!m_fout.is_open())
48 return false;
49
50 if (evt.weight != 1.0) {
51 std::cout << "**WARNING** Writing a weighted event to a file. The information about the weight will be lost!" << std::endl;
52 }
53
54 m_fout << "Event " << ++m_EventNumber << std::endl;
55
56 const int tabsize = 25;
57
58 m_fout.precision(16);
59 m_fout << std::scientific;
60
61 m_fout << std::setw(tabsize) << "pdgid";
62
63 m_fout << std::setw(tabsize) << "p0[GeV/c2]";
64
65 m_fout << std::setw(tabsize) << "px[GeV/c]"
66 << std::setw(tabsize) << "py[GeV/c]"
67 << std::setw(tabsize) << "pz[GeV/c]";
68
69 m_fout << std::endl;
70
71 for (size_t i = 0; i < evt.Particles.size(); ++i) {
72 const SimpleParticle& part = evt.Particles[i];
73
74 m_fout << std::setw(tabsize) << part.PDGID;
75
76 m_fout << std::setw(tabsize) << part.p0;
77
78 m_fout << std::setw(tabsize) << part.px
79 << std::setw(tabsize) << part.py
80 << std::setw(tabsize) << part.pz;
81
82 m_fout << std::endl;
83 }
84
85 return true;
86 }
87
89 {
90 if (!m_fout.is_open())
91 return false;
93 evt.writeToFile(m_fout, m_config, m_EventNumber);
94 return true;
95 }
96
98 {
99 if (!m_fout.is_open())
100 return false;
103 return true;
104 }
105
107 {
108 if (!m_fout.is_open())
109 return false;
112 return true;
113 }
114
115}
bool WriteEvent(const SimpleEvent &evt)
bool WriteEvent(const SimpleEvent &evt)
bool WriteEvent(const SimpleEvent &evt)
virtual bool WriteEvent(const SimpleEvent &evt)
EventWriter(const std::string &filename="")
virtual bool OpenFile(const std::string &filename)
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9
Structure holding information about a single event in the event generator.
Definition SimpleEvent.h:20
double weight
Event weight factor.
Definition SimpleEvent.h:22
std::vector< SimpleParticle > Particles
Vector of all final particles in the event.
Definition SimpleEvent.h:28
void writeToFileForUrqmd(std::ofstream &fout) const
Writes the event in a format suitable for UrQMD afterburner, as described here https://github....
void writeToFileForSmash(std::ofstream &fout, const thermalfist::ThermalParticleSystem *TPS=NULL, const int eventnumber=1) const
Writes the event in a format suitable for SMASH afterburner.
void writeToFile(std::ofstream &fout, const EventOutputConfig &config=EventOutputConfig(), int eventnumber=1) const
Writes the event to an output file stream.
Structure holding information about a single particle in the event generator.
double p0
Energy (in GeV)
double pz
3-momentum components (in GeV)