Thermal-FIST
1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
src
library
HRGEventGenerator
HepMCEventWriter.cpp
Go to the documentation of this file.
1
#include "
HRGEventGenerator/HepMCEventWriter.h
"
2
3
#include <string>
4
#include <iostream>
5
6
#include "ThermalFISTConfig.h"
7
8
namespace
thermalfist
{
9
10
HepMCEventWriter::HepMCEventWriter
(
const
std::string& filename)
11
{
12
OpenFile
(filename);
13
}
14
15
HepMCEventWriter::~HepMCEventWriter
()
16
{
17
CloseFile
();
18
}
19
20
bool
HepMCEventWriter::OpenFile
(
const
std::string& filename)
21
{
22
if
(!
EventWriter::OpenFile
(filename))
23
return
false
;
24
25
m_fout
<< std::scientific;
26
m_fout
.precision(16);
27
28
if
(!
m_fout
.is_open())
29
return
false
;
30
31
const
std::string header =
"HepMC::Version "
+ std::string(
"3.01.01"
) +
"\nHepMC::Asciiv3-START_EVENT_LISTING\n"
;
32
m_fout
<< header;
33
34
m_fout
<<
"W "
<< 1 <<
"\n"
;
35
m_fout
<<
"N "
<<
"ImportanceSamplingWeight"
<<
"\n"
;
36
37
std::string version = std::to_string(ThermalFIST_VERSION_MAJOR) +
"."
+ std::to_string(ThermalFIST_VERSION_MINOR);
38
if
(ThermalFIST_VERSION_DEVEL != 0) {
39
version +=
"."
+ std::to_string(ThermalFIST_VERSION_DEVEL);
40
}
41
m_fout
<<
"T "
<<
"Thermal-FIST"
<<
"\\|"
;
42
m_fout
<< version <<
"\\|"
;
43
m_fout
<<
"ThermalFistEventGenerator"
<<
"\n"
;
44
45
return
true
;
46
}
47
48
void
HepMCEventWriter::CloseFile
()
49
{
50
if
(
m_fout
.is_open()) {
51
const
std::string footer(
"HepMC::Asciiv3-END_EVENT_LISTING\n\n"
);
52
m_fout
<< footer;
53
m_fout
.close();
54
}
55
}
56
57
bool
HepMCEventWriter::WriteEvent
(
const
SimpleEvent
& evt)
58
{
59
if
(!
m_fout
.is_open())
60
return
false
;
61
62
m_fout
<<
"E "
<<
m_EventNumber
++ <<
" "
<< 0 <<
" "
<< evt.
Particles
.size() <<
"\n"
;
63
m_fout
<<
"U "
<<
"GEV"
<<
" "
<<
"MM"
<<
"\n"
;
64
m_fout
<<
"W "
<< evt.
weight
<<
"\n"
;
65
66
for
(
int
ip = 0; ip < evt.
Particles
.size(); ++ip) {
67
const
SimpleParticle
& part = evt.
Particles
[ip];
68
m_fout
<<
"P "
<< ip + 1 <<
" "
<< 0 <<
" "
;
69
70
m_fout
<< part.
PDGID
<<
" "
;
71
m_fout
<< part.
px
<<
" "
<< part.
py
<<
" "
<< part.
pz
<<
" "
<< part.
p0
<<
" "
;
72
m_fout
<< part.
m
<<
" "
;
73
74
m_fout
<< 1 <<
"\n"
;
75
}
76
77
return
true
;
78
}
79
80
}
HepMCEventWriter.h
thermalfist::EventWriter::m_fout
std::ofstream m_fout
Definition
EventWriter.h:33
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::HepMCEventWriter::~HepMCEventWriter
virtual ~HepMCEventWriter()
Definition
HepMCEventWriter.cpp:15
thermalfist::HepMCEventWriter::WriteEvent
virtual bool WriteEvent(const SimpleEvent &evt)
Definition
HepMCEventWriter.cpp:57
thermalfist::HepMCEventWriter::CloseFile
virtual void CloseFile()
Definition
HepMCEventWriter.cpp:48
thermalfist::HepMCEventWriter::OpenFile
virtual bool OpenFile(const std::string &filename)
Definition
HepMCEventWriter.cpp:20
thermalfist::HepMCEventWriter::HepMCEventWriter
HepMCEventWriter(const std::string &filename="")
Definition
HepMCEventWriter.cpp:10
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::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::m
double m
Mass (in GeV)
Definition
SimpleParticle.h:17
thermalfist::SimpleParticle::px
double px
Definition
SimpleParticle.h:16
Generated by
1.13.2