Thermal-FIST 1.5
Package for hadron resonance gas model applications
Loading...
Searching...
No Matches
HepMCEventWriter.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 HEPMCEVENTWRITER_H
9#define HEPMCEVENTWRITER_H
10
11#include <fstream>
12
13#include "EventWriter.h"
14
15
16namespace thermalfist {
17
23 : public EventWriter
24 {
25 public:
26 HepMCEventWriter(const std::string & filename = "");
27 virtual ~HepMCEventWriter();
28
29 virtual bool OpenFile(const std::string& filename);
30
31 virtual void CloseFile();
32
33 virtual bool WriteEvent(const SimpleEvent& evt);
34 };
35
36} // namespace thermalfist
37
38#endif
EventWriter(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