Basic example of use of root I/O: writing events to file
- Author
- Witold Pokorski
- Date
- 16/10/14
#include <iostream>
int main(
int argc,
char **argv) {
if( argc<3 ) {
std::cout << "Usage: " << argv[0] << " <input_hepmc3_file> <output_root_file>" << std::endl;
exit(-1);
}
ReaderAscii text_input (argv[1]);
WriterRoot root_output(argv[2]);
int events_parsed = 0;
while( !text_input.failed() ) {
GenEvent evt(Units::GEV,Units::MM);
text_input.read_event(evt);
if( text_input.failed() ) break;
if( events_parsed == 0 ) {
std::cout << "First event: " << std::endl;
Print::listing(evt);
}
root_output.write_event(evt);
++events_parsed;
if( events_parsed%100 == 0 ) {
std::cout << "Event: " << events_parsed << std::endl;
}
}
text_input.close();
root_output.close();
std::cout << "Events parsed and written: " << events_parsed << std::endl;
return 0;
}
Definition of class GenEvent.
Definition of static class Print.
Definition of class ReaderAscii.
Definition of class WriterRoot.
int main(int argc, char **argv)