Thermal-FIST
1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
src
library
HRGEventGenerator
EventWriter.cpp
Go to the documentation of this file.
1
#include "
HRGEventGenerator/EventWriter.h
"
2
3
#include <string>
4
#include <iostream>
5
#include <iomanip>
6
7
#include "ThermalFISTConfig.h"
8
9
namespace
thermalfist
{
10
11
EventWriter::EventWriter
(
const
std::string& filename)
12
{
13
OpenFile
(filename);
14
}
15
16
EventWriter::~EventWriter
()
17
{
18
CloseFile
();
19
}
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
38
void
EventWriter::CloseFile
()
39
{
40
if
(
m_fout
.is_open()) {
41
m_fout
.close();
42
}
43
}
44
45
bool
EventWriter::WriteEvent
(
const
SimpleEvent
& evt)
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
88
bool
EventWriterAsciiExtended::WriteEvent
(
const
SimpleEvent
& evt)
89
{
90
if
(!
m_fout
.is_open())
91
return
false
;
92
++
m_EventNumber
;
93
evt.
writeToFile
(
m_fout
, m_config,
m_EventNumber
);
94
return
true
;
95
}
96
97
bool
EventWriterForUrqmd::WriteEvent
(
const
SimpleEvent
& evt)
98
{
99
if
(!
m_fout
.is_open())
100
return
false
;
101
++
m_EventNumber
;
102
evt.
writeToFileForUrqmd
(
m_fout
);
103
return
true
;
104
}
105
106
bool
EventWriterForSmash::WriteEvent
(
const
SimpleEvent
& evt)
107
{
108
if
(!
m_fout
.is_open())
109
return
false
;
110
++
m_EventNumber
;
111
evt.
writeToFileForSmash
(
m_fout
, m_TPS,
m_EventNumber
);
112
return
true
;
113
}
114
115
}
EventWriter.h
thermalfist::EventWriterAsciiExtended::WriteEvent
bool WriteEvent(const SimpleEvent &evt)
Definition
EventWriter.cpp:88
thermalfist::EventWriterForSmash::WriteEvent
bool WriteEvent(const SimpleEvent &evt)
Definition
EventWriter.cpp:106
thermalfist::EventWriterForUrqmd::WriteEvent
bool WriteEvent(const SimpleEvent &evt)
Definition
EventWriter.cpp:97
thermalfist::EventWriter::CloseFile
virtual void CloseFile()
Definition
EventWriter.cpp:38
thermalfist::EventWriter::m_fout
std::ofstream m_fout
Definition
EventWriter.h:33
thermalfist::EventWriter::~EventWriter
virtual ~EventWriter()
Definition
EventWriter.cpp:16
thermalfist::EventWriter::WriteEvent
virtual bool WriteEvent(const SimpleEvent &evt)
Definition
EventWriter.cpp:45
thermalfist::EventWriter::EventWriter
EventWriter(const std::string &filename="")
Definition
EventWriter.cpp:11
thermalfist::EventWriter::OpenFile
virtual bool OpenFile(const std::string &filename)
Definition
EventWriter.cpp:21
thermalfist::EventWriter::m_EventNumber
int m_EventNumber
Definition
EventWriter.h:34
thermalfist
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition
CosmicEoS.h:9
thermalfist::SimpleEvent
Structure holding information about a single event in the event generator.
Definition
SimpleEvent.h:20
thermalfist::SimpleEvent::weight
double weight
Event weight factor.
Definition
SimpleEvent.h:22
thermalfist::SimpleEvent::Particles
std::vector< SimpleParticle > Particles
Vector of all final particles in the event.
Definition
SimpleEvent.h:28
thermalfist::SimpleEvent::writeToFileForUrqmd
void writeToFileForUrqmd(std::ofstream &fout) const
Writes the event in a format suitable for UrQMD afterburner, as described here https://github....
Definition
SimpleEvent.cpp:105
thermalfist::SimpleEvent::writeToFileForSmash
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.
Definition
SimpleEvent.cpp:134
thermalfist::SimpleEvent::writeToFile
void writeToFile(std::ofstream &fout, const EventOutputConfig &config=EventOutputConfig(), int eventnumber=1) const
Writes the event to an output file stream.
Definition
SimpleEvent.cpp:14
thermalfist::SimpleParticle
Structure holding information about a single particle in the event generator.
Definition
SimpleParticle.h:15
thermalfist::SimpleParticle::PDGID
long long PDGID
PDG code.
Definition
SimpleParticle.h:19
thermalfist::SimpleParticle::py
double py
Definition
SimpleParticle.h:16
thermalfist::SimpleParticle::p0
double p0
Energy (in GeV)
Definition
SimpleParticle.h:18
thermalfist::SimpleParticle::pz
double pz
3-momentum components (in GeV)
Definition
SimpleParticle.h:16
thermalfist::SimpleParticle::px
double px
Definition
SimpleParticle.h:16
Generated by
1.13.2