Line data Source code
1 : // This file (util_main.cc) was created by Ron Rechenmacher <ron@fnal.gov> on
2 : // May 13, 2015. "TERMS AND CONDITIONS" governing this file are in the README
3 : // or COPYING file. If you do not have such a file, one can be obtained by
4 : // contacting Ron or Fermi Lab in Batavia IL, 60510, phone: 630-840-3000.
5 : // $RCSfile: .emacs.gnu,v $
6 : // rev="$Revision: 1.23 $$Date: 2012/01/23 15:32:40 $";
7 :
8 : #include "Mu2eUtil.h"
9 :
10 0 : int main(int argc, char* argv[])
11 : {
12 0 : DTCLib::Mu2eUtil theUtil;
13 0 : theUtil.parse_arguments(argc, argv);
14 0 : theUtil.run();
15 :
16 0 : return 0;
17 0 : } // main
|