Utility to convert between different types of event records.
#ifdef HEPMC3_ROOTIO
#endif
#if HEPMC3_USE_COMPRESSION
#endif
#ifdef HEPMC3_PROTOBUFIO
#endif
#ifdef HEPMCCONVERT_EXTENSION_ROOTTREEOPAL
#ifndef HEPMC3_ROOTIO
#warning "HEPMCCONVERT_EXTENSION_ROOTTREEOPAL requires compilation with of HepMC with ROOT, i.e. HEPMC3_ROOTIO.This extension will be disabled."
#undef HEPMCCONVERT_EXTENSION_ROOTTREEOPAL
#else
#endif
#endif
#ifdef HEPMCCONVERT_EXTENSION_HEPEVTZEUS
#endif
#ifdef HEPMCCONVERT_EXTENSION_DOT
#endif
#include "cmdline.h"
enum formats {autodetect, hepmc2, hepmc3, hpe,root, treeroot, treerootopal, hpezeus, lhef, dump, dot, plugin, none, proto};
template <class T>
std::shared_ptr<Reader> get_input_file(const char* name, const bool input_is_stdin, const bool use_compression) {
std::string n(name);
#if HEPMC3_USE_COMPRESSION
if (use_compression) {
}
#endif
return (input_is_stdin?std::make_shared<T>(std::cin):std::make_shared<T>(n));
}
template <class T>
std::shared_ptr<Writer> get_output_file(const char* name, const char* use_compression) {
std::string n(name);
#if HEPMC3_USE_COMPRESSION
if (std::string(use_compression) == "z" ) return std::make_shared< WriterGZ<T,Compression::z> >(n);
if (std::string(use_compression) == "lzma" ) return std::make_shared< WriterGZ<T,Compression::lzma> >(n);
if (std::string(use_compression) == "bz2" ) return std::make_shared< WriterGZ<T,Compression::bz2> >(n);
#endif
return std::make_shared<T>(n);
}
int main(int argc, char** argv)
{
gengetopt_args_info ai{};
if (cmdline_parser (argc, argv, &ai) != 0) {
exit(1);
}
if ( !(
( ai.inputs_num == 2 && ( std::string(ai.output_format_arg) != "none" && std::string(ai.output_format_arg) != "dump" )) ||
( ai.inputs_num == 1 && ( std::string(ai.output_format_arg) == "none" || std::string(ai.output_format_arg) == "dump" ))
)
)
{
printf("Exactly two arguments are requred: the name of input and output files if the output format in not \"none\" or \"dump\" \n");
printf("In case the output format is \"none\" or \"dump\" exactly one argument should be given: the name of input file.\n");
exit(1);
}
std::map<std::string,formats> format_map;
format_map.insert(std::pair<std::string,formats> ( "auto", autodetect ));
format_map.insert(std::pair<std::string,formats> ( "hepmc2", hepmc2 ));
format_map.insert(std::pair<std::string,formats> ( "hepmc3", hepmc3 ));
format_map.insert(std::pair<std::string,formats> ( "hpe", hpe ));
format_map.insert(std::pair<std::string,formats> ( "root", root ));
format_map.insert(std::pair<std::string,formats> ( "treeroot", treeroot ));
format_map.insert(std::pair<std::string,formats> ( "treerootopal", treerootopal ));
format_map.insert(std::pair<std::string,formats> ( "hpezeus", hpezeus ));
format_map.insert(std::pair<std::string,formats> ( "lhef", lhef ));
format_map.insert(std::pair<std::string,formats> ( "dump", dump ));
format_map.insert(std::pair<std::string,formats> ( "dot", dot ));
format_map.insert(std::pair<std::string,formats> ( "plugin", plugin ));
format_map.insert(std::pair<std::string,formats> ( "none", none ));
format_map.insert(std::pair<std::string,formats> ( "proto", proto ));
std::map<std::string, std::string> options;
for (size_t i=0; i<ai.extensions_given; i++)
{
std::string optarg(ai.extensions_arg[i]);
size_t pos = optarg.find_first_of('=');
if ( pos < optarg.length() ) {
options[std::string(optarg,0,pos)] = std::string(optarg, pos+1, optarg.length());
}
}
long int events_parsed = 0;
long int events_limit = ai.events_limit_arg;
long int first_event_number = ai.first_event_number_arg;
long int last_event_number = ai.last_event_number_arg;
long int print_each_events_parsed = ai.print_every_events_parsed_arg;
std::string InputPluginLibrary;
std::string InputPluginName;
std::string OutputPluginLibrary;
std::string OutputPluginName;
std::shared_ptr<Reader> input_file;
bool input_is_stdin = (std::string(ai.inputs[0]) == std::string("-"));
if (input_is_stdin) std::ios_base::sync_with_stdio(false);
#ifdef _LIBCPP_VERSION
if (input_is_stdin) {
printf("The program cannot process inputs from standard input as std::ios_base::sync_with_stdio(bool) is not implemented in libc++, please use another C++ standard library.\n");
exit(4);
}
#endif
bool ignore_writer = false;
switch (format_map.at(std::string(ai.input_format_arg)))
{
case autodetect:
if (!input_file)
{
input_is_stdin?printf("Input format detection for std input has failed\n"):printf("Input format detection for file %s has failed\n",ai.inputs[0]);
exit(2);
}
break;
case hepmc2:
input_file = get_input_file<ReaderAsciiHepMC2>(ai.inputs[0], input_is_stdin, ai.compressed_input_flag);
break;
case hepmc3:
input_file = get_input_file<ReaderAscii>(ai.inputs[0], input_is_stdin, ai.compressed_input_flag);
break;
case hpe:
input_file = get_input_file<ReaderHEPEVT>(ai.inputs[0], input_is_stdin,ai.compressed_input_flag);
break;
case lhef:
input_file = get_input_file<ReaderLHEF>(ai.inputs[0], input_is_stdin, ai.compressed_input_flag);
break;
case treeroot:
#ifdef HEPMC3_ROOTIO
input_file = std::make_shared<ReaderRootTree>(ai.inputs[0]);
break;
#else
printf("Input format %s is not supported\n", ai.input_format_arg);
exit(2);
#endif
case root:
#ifdef HEPMC3_ROOTIO
input_file = std::make_shared<ReaderRoot>(ai.inputs[0]);
break;
#else
printf("Input format %s is not supported\n", ai.input_format_arg);
exit(2);
#endif
case proto:
#ifdef HEPMC3_PROTOBUFIO
input_file = std::make_shared<Readerprotobuf>(ai.inputs[0]);
break;
#else
printf("Input format %s is not supported\n", ai.input_format_arg);
exit(2);
#endif
case plugin:
if (options.find("InputPluginLibrary") == options.end()) {
printf("InputPluginLibrary option required\n");
exit(2);
}
else InputPluginLibrary = options.at("InputPluginLibrary");
if (options.find("InputPluginName") == options.end()) {
printf("InputPluginName option required\n");
exit(2);
}
else InputPluginName = options.at("InputPluginName");
input_file = std::make_shared<ReaderPlugin>(std::string(ai.inputs[0]), InputPluginLibrary, InputPluginName);
if (input_file->failed()) {
printf("Plugin initialization failed\n");
exit(2);
}
break;
default:
printf("Input format %s is not known\n", ai.input_format_arg);
exit(2);
break;
}
std::shared_ptr<Writer> output_file;
switch (format_map.at(std::string(ai.output_format_arg)))
{
case hepmc2:
output_file = get_output_file<WriterAsciiHepMC2>(ai.inputs[1], ai.compressed_output_arg);
break;
case hepmc3:
output_file = get_output_file<WriterAscii>(ai.inputs[1], ai.compressed_output_arg);
break;
case hpe:
output_file = get_output_file<WriterHEPEVT>(ai.inputs[1], ai.compressed_output_arg);
break;
case root:
#ifdef HEPMC3_ROOTIO
output_file = std::make_shared<WriterRoot>(ai.inputs[1]);
break;
#else
printf("Output format %s is not supported\n", ai.output_format_arg);
exit(2);
#endif
case proto:
#ifdef HEPMC3_PROTOBUFIO
output_file = std::make_shared<Writerprotobuf>(ai.inputs[1]);
break;
#else
printf("Output format %s is not supported\n", ai.output_format_arg);
exit(2);
#endif
case treeroot:
#ifdef HEPMC3_ROOTIO
output_file = std::make_shared<WriterRootTree>(ai.inputs[1]);
break;
#else
printf("Output format %s is not supported\n",ai.output_format_arg);
exit(2);
#endif
case treerootopal:
#ifdef HEPMCCONVERT_EXTENSION_ROOTTREEOPAL
output_file = std::make_shared<WriterRootTreeOPAL>(ai.inputs[1]);
(std::dynamic_pointer_cast<WriterRootTreeOPAL>(output_file))->init_branches();
if (options.find("Run") != options.end()) (std::dynamic_pointer_cast<WriterRootTreeOPAL>(output_file))->set_run_number(std::atoi(options.at("Run").c_str()));
break;
#else
printf("Output format %s is not supported\n",ai.output_format_arg);
exit(2);
break;
#endif
case hpezeus:
#ifdef HEPMCCONVERT_EXTENSION_HEPEVTZEUS
output_file = std::make_shared<WriterHEPEVTZEUS>(ai.inputs[1]);
break;
#else
printf("Output format %s is not supported\n",ai.output_format_arg);
exit(2);
#endif
case dot:
#ifdef HEPMCCONVERT_EXTENSION_DOT
output_file = std::make_shared<WriterDOT>(ai.inputs[1]);
if (options.find("Style") != options.end()) (std::dynamic_pointer_cast<WriterDOT>(output_file))->set_style(std::atoi(options.at("Style").c_str()));
break;
#else
printf("Output format %s is not supported\n",ai.output_format_arg);
exit(2);
break;
#endif
case plugin:
if (options.find("OutputPluginLibrary") == options.end()) {
printf("OutputPluginLibrary option required, e.g. OutputPluginLibrary=libAnalysis.so\n");
exit(2);
}
else OutputPluginLibrary = options.at("OutputPluginLibrary");
if (options.find("OutputPluginName") == options.end()) {
printf("OutputPluginName option required, e.g. OutputPluginName=newAnalysisExamplefile\n");
exit(2);
}
else OutputPluginName = options.at("OutputPluginName");
output_file = std::make_shared<WriterPlugin>(std::string(ai.inputs[1]), OutputPluginLibrary, OutputPluginName);
if (output_file->failed()) {
printf("Plugin initialization failed\n");
exit(2);
}
break;
case dump:
output_file = nullptr;
break;
case none:
output_file = nullptr;
ignore_writer = true;
break;
default:
printf("Output format %s is not known\n", ai.output_format_arg);
exit(2);
break;
}
while( !input_file->failed() )
{
bool res_read = input_file->read_event(evt);
if( input_file->failed() ) {
printf("End of file reached. Exit.\n");
break;
}
if ( !res_read && ai.strict_read_arg) {
printf("Broken event. Exit.\n");
exit(3);
}
if (evt.event_number() < first_event_number) continue;
if (evt.event_number() > last_event_number) continue;
evt.set_run_info(input_file->run_info());
if (!ignore_writer)
{
if (output_file)
{
output_file->write_event(evt);
}
else
{
}
}
evt.clear();
++events_parsed;
if( events_parsed%print_each_events_parsed == 0 ) printf("Events parsed: %li\n", events_parsed);
if( events_parsed >= events_limit ) {
printf("Event limit reached:->events_parsed(%li) >= events_limit(%li)<-. Exit.\n", events_parsed, events_limit);
break;
}
}
if (input_file) input_file->close();
if (output_file) output_file->close();
cmdline_parser_free(&ai);
return EXIT_SUCCESS;
}
Definition of class GenEvent.
Definition of static class Print.
Definition of class ReaderAsciiHepMC2.
Definition of class ReaderAscii.
Declaration of deduce_reader and related functions.
Definition of class ReaderGZ.
Definition of class ReaderHEPEVT.
Definition of class ReaderLHEF.
Definition of class ReaderPlugin.
Definition of class ReaderRootTree.
Definition of class ReaderRoot.
Definition of interface Reader.
Definition of class Readerprotobuf.
Definition of class WriterAsciiHepMC2.
Definition of class WriterAscii.
Definition of class WriterDOT converter of GenEvent into .dot format.
Definition of class WriterGZ.
Definition of class WriterHEPEVTZEUS.
Definition of class WriterHEPEVT.
Definition of class WriterPlugin.
Definition of class WriterRootTreeOPAL.
Definition of class WriterRootTree.
Definition of class WriterRoot.
Definition of class Writerprotobuf.
Stores event-related information.
static void content(std::ostream &os, const GenEvent &event)
Print content of all GenEvent containers.
GenEvent I/O parsing for compressed files.
std::shared_ptr< Reader > deduce_reader(const std::string &filename)
This function deduces the type of input file based on the name/URL and its content,...