#include "Analyser.h" #include "TApplication.h" #include #include int main(int argc, char *argv[]) { TApplication a("a", 0, 0); // for autoloading of ROOT classes std::string infile(argv[1]); std::string outfile(argv[2]); std::cout << "infile:outfile:" << infile << ":" << outfile << std::endl; Analyser m; m.Loop(infile, outfile); return 0; }