Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
HepMCEventWriter.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <iostream>
5
6#include "ThermalFISTConfig.h"
7
8namespace thermalfist {
9
10 HepMCEventWriter::HepMCEventWriter(const std::string& filename)
11 {
12 OpenFile(filename);
13 }
14
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
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
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}
virtual bool OpenFile(const std::string &filename)
virtual bool WriteEvent(const SimpleEvent &evt)
virtual bool OpenFile(const std::string &filename)
HepMCEventWriter(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
Structure holding information about a single particle in the event generator.
double p0
Energy (in GeV)
double pz
3-momentum components (in GeV)