Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
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"
15
16
17namespace thermalfist {
18
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;
35 };
36
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:
50 };
51
54 : public EventWriter
55 {
56 public:
57 EventWriterForUrqmd(const std::string& filename = "") : EventWriter(filename) { }
58 bool WriteEvent(const SimpleEvent& evt);
59 };
60
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
EventWriterAsciiExtended(const std::string &filename="", const SimpleEvent::EventOutputConfig &config=SimpleEvent::EventOutputConfig())
Definition EventWriter.h:45
void SetOutputConfig(const SimpleEvent::EventOutputConfig &config)
Definition EventWriter.h:46
bool WriteEvent(const SimpleEvent &evt)
EventWriterForSmash(const std::string &filename="", const ThermalParticleSystem *TPS=NULL)
Definition EventWriter.h:66
bool WriteEvent(const SimpleEvent &evt)
EventWriterForUrqmd(const std::string &filename="")
Definition EventWriter.h:57
bool WriteEvent(const SimpleEvent &evt)
virtual bool WriteEvent(const SimpleEvent &evt)
EventWriter(const std::string &filename="")
virtual bool OpenFile(const std::string &filename)
Class containing the particle list.
The main namespace where all classes and functions of the Thermal-FIST library reside.
Definition CosmicEoS.h:9
Configuration for the event output.
Definition SimpleEvent.h:53
Structure holding information about a single event in the event generator.
Definition SimpleEvent.h:20