HepMC3 event record library
|
GenEvent I/O parsing and serialization using external plugin. More...
#include <ReaderPlugin.h>
Public Member Functions | |
ReaderPlugin (std::istream &stream, const std::string &libname, const std::string &newreader) | |
Constructor to read from stream. More... | |
ReaderPlugin (const std::string &filename, const std::string &libname, const std::string &newreader) | |
Constructor to read from file. More... | |
bool | read_event (GenEvent &ev) override |
Reading event. More... | |
void | close () override |
Close. More... | |
bool | failed () override |
State. More... | |
~ReaderPlugin () override | |
Destructor. More... | |
virtual bool | skip (const int) |
skip or fast forward reading of some events More... | |
std::shared_ptr< GenRunInfo > | run_info () const |
Get the global GenRunInfo object. More... | |
void | set_options (const std::map< std::string, std::string > &options) |
Set options. More... | |
std::map< std::string, std::string > | get_options () const |
Set options. More... | |
Protected Member Functions | |
void | set_run_info (std::shared_ptr< GenRunInfo > run) |
Set the global GenRunInfo object. More... | |
Protected Attributes | |
std::map< std::string, std::string > | m_options |
options More... | |
Private Attributes | |
Reader * | m_reader |
The actual reader. More... | |
void * | dll_handle |
library handler More... | |
GenEvent I/O parsing and serialization using external plugin.
Definition at line 23 of file ReaderPlugin.h.
ReaderPlugin | ( | std::istream & | stream, |
const std::string & | libname, | ||
const std::string & | newreader | ||
) |
Constructor to read from stream.
Definition at line 28 of file ReaderPlugin.cc.
References ReaderPlugin::dll_handle, and ReaderPlugin::m_reader.
ReaderPlugin | ( | const std::string & | filename, |
const std::string & | libname, | ||
const std::string & | newreader | ||
) |
Constructor to read from file.
Constructor.
Definition at line 52 of file ReaderPlugin.cc.
References ReaderPlugin::dll_handle, and ReaderPlugin::m_reader.
|
override |
Destructor.
Definition at line 74 of file ReaderPlugin.cc.
References Reader::close(), ReaderPlugin::dll_handle, and ReaderPlugin::m_reader.
|
inlineoverridevirtual |
Close.
Implements Reader.
Definition at line 33 of file ReaderPlugin.h.
References Reader::close(), and ReaderPlugin::m_reader.
|
inlineoverridevirtual |
State.
Implements Reader.
Definition at line 35 of file ReaderPlugin.h.
References Reader::failed(), and ReaderPlugin::m_reader.
|
inlineinherited |
|
inlineoverridevirtual |
Reading event.
Implements Reader.
Definition at line 31 of file ReaderPlugin.h.
References ReaderPlugin::m_reader, and Reader::read_event().
|
inlineinherited |
Get the global GenRunInfo object.
Definition at line 44 of file Reader.h.
References Reader::m_run_info.
|
inlineinherited |
|
inlineprotectedinherited |
Set the global GenRunInfo object.
Definition at line 64 of file Reader.h.
References Reader::m_run_info.
|
inlinevirtualinherited |
skip or fast forward reading of some events
Reimplemented in ReaderHEPEVT, ReaderRootTree, ReaderAsciiHepMC2, ReaderLHEF, ReaderRoot, and ReaderAscii.
Definition at line 34 of file Reader.h.
References Reader::failed().
|
private |
library handler
Definition at line 40 of file ReaderPlugin.h.
|
protectedinherited |
|
private |
The actual reader.
Definition at line 39 of file ReaderPlugin.h.