Class for writing events to a file in the Les Houches Event File format. More...
#include <LesHouchesWriter.hh>
Public Member Functions | |
LesHouchesWriter (std::string const &file, LHEF::HEPRUP heprup) | |
Constructor. More... | |
LesHouchesWriter (std::string const &file, LHEF::HEPRUP heprup, std::string_view config) | |
Constructor. More... | |
LesHouchesWriter (LesHouchesWriter const &other)=delete | |
LesHouchesWriter & | operator= (LesHouchesWriter const &other)=delete |
LesHouchesWriter (LesHouchesWriter &&other)=delete | |
LesHouchesWriter & | operator= (LesHouchesWriter &&other)=delete |
~LesHouchesWriter () override | |
void | write (Event const &ev) override |
Write an event to the file specified in the constructor. More... | |
void | set_xs_scale (double scale) override |
Set the ratio (cross section) / (sum of event weights) More... | |
void | finish () override |
Dump general information & finish writing. More... | |
![]() | |
virtual | ~EventWriter ()=default |
Additional Inherited Members | |
![]() | |
void | finish_or_abort (EventWriter *writer, std::string const &name) const noexcept |
If writer is not finished run finish() and abort on error. More... | |
bool | finished () const |
Class for writing events to a file in the Les Houches Event File format.
HEJ::LesHouchesWriter::LesHouchesWriter | ( | std::string const & | file, |
LHEF::HEPRUP | heprup | ||
) |
Constructor.
file | Name of output file |
heprup | General process information |
HEJ::LesHouchesWriter::LesHouchesWriter | ( | std::string const & | file, |
LHEF::HEPRUP | heprup, | ||
std::string_view | config | ||
) |
Constructor.
file | Name of output file |
heprup | General process information |
config | Generator configuration (e.g. a run card) |
This constructor will write the start of an event file in the LesHouches Event File format to the given output file. Both the header
and the init
block according to the information in heprup
will be written. If heprup.generators
is non-empty, the header
block will contain an XML element containing the configuration passed via the config
argument. The name of the XML element is the last element of heprup.generators
with all spaces removed.
|
delete |
|
delete |
|
override |
|
overridevirtual |
Dump general information & finish writing.
Reimplemented from HEJ::EventWriter.
|
delete |
|
delete |
|
overridevirtual |
Set the ratio (cross section) / (sum of event weights)
Implements HEJ::EventWriter.
|
overridevirtual |
Write an event to the file specified in the constructor.
Implements HEJ::EventWriter.