Thermal-FIST
1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
include
HRGEventGenerator
EventWriter.h
Go to the documentation of this file.
1
/*
2
* Thermal-FIST package
3
*
4
* Copyright (c) 2019-2019 Volodymyr Vovchenko
5
*
6
* GNU General Public License (GPLv3 or later)
7
*/
8
#ifndef EVENTWRITER_H
9
#define EVENTWRITER_H
10
11
#include <fstream>
12
13
#include "
SimpleEvent.h
"
14
#include "
HRGBase/ThermalParticleSystem.h
"
15
16
17
namespace
thermalfist
{
18
21
class
EventWriter
22
{
23
public
:
24
EventWriter
(
const
std::string & filename =
""
);
25
virtual
~EventWriter
();
26
27
virtual
bool
OpenFile
(
const
std::string& filename);
28
29
virtual
void
CloseFile
();
30
31
virtual
bool
WriteEvent
(
const
SimpleEvent
& evt);
32
protected
:
33
std::ofstream
m_fout
;
34
int
m_EventNumber
;
35
};
36
41
class
EventWriterAsciiExtended
42
:
public
EventWriter
43
{
44
public
:
45
EventWriterAsciiExtended
(
const
std::string& filename =
""
,
const
SimpleEvent::EventOutputConfig
& config =
SimpleEvent::EventOutputConfig
()) :
EventWriter
(filename), m_config(config) { }
46
void
SetOutputConfig
(
const
SimpleEvent::EventOutputConfig
& config) { m_config = config; }
47
bool
WriteEvent
(
const
SimpleEvent
& evt);
48
private
:
49
SimpleEvent::EventOutputConfig
m_config;
50
};
51
53
class
EventWriterForUrqmd
54
:
public
EventWriter
55
{
56
public
:
57
EventWriterForUrqmd
(
const
std::string& filename =
""
) :
EventWriter
(filename) { }
58
bool
WriteEvent
(
const
SimpleEvent
& evt);
59
};
60
62
class
EventWriterForSmash
63
:
public
EventWriter
64
{
65
public
:
66
EventWriterForSmash
(
const
std::string& filename =
""
,
const
ThermalParticleSystem
* TPS = NULL) :
EventWriter
(filename), m_TPS(TPS) { }
67
bool
WriteEvent
(
const
SimpleEvent
& evt);
68
private
:
69
const
ThermalParticleSystem
* m_TPS;
70
};
71
72
}
// namespace thermalfist
73
74
75
76
#endif
SimpleEvent.h
ThermalParticleSystem.h
thermalfist::EventWriterAsciiExtended::EventWriterAsciiExtended
EventWriterAsciiExtended(const std::string &filename="", const SimpleEvent::EventOutputConfig &config=SimpleEvent::EventOutputConfig())
Definition
EventWriter.h:45
thermalfist::EventWriterAsciiExtended::SetOutputConfig
void SetOutputConfig(const SimpleEvent::EventOutputConfig &config)
Definition
EventWriter.h:46
thermalfist::EventWriterAsciiExtended::WriteEvent
bool WriteEvent(const SimpleEvent &evt)
Definition
EventWriter.cpp:88
thermalfist::EventWriterForSmash::EventWriterForSmash
EventWriterForSmash(const std::string &filename="", const ThermalParticleSystem *TPS=NULL)
Definition
EventWriter.h:66
thermalfist::EventWriterForSmash::WriteEvent
bool WriteEvent(const SimpleEvent &evt)
Definition
EventWriter.cpp:106
thermalfist::EventWriterForUrqmd::EventWriterForUrqmd
EventWriterForUrqmd(const std::string &filename="")
Definition
EventWriter.h:57
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::ThermalParticleSystem
Class containing the particle list.
Definition
ThermalParticleSystem.h:30
thermalfist
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition
CosmicEoS.h:9
thermalfist::SimpleEvent::EventOutputConfig
Configuration for the event output.
Definition
SimpleEvent.h:53
thermalfist::SimpleEvent
Structure holding information about a single event in the event generator.
Definition
SimpleEvent.h:20
Generated by
1.13.2