AcclaimCmdLineArgs.h
1 #ifndef ACCLAIM_CMD_LINE_ARGS
2 #define ACCLAIM_CMD_LINE_ARGS
3 
4 #include "TString.h"
5 
6 namespace Acclaim{
7 
8 
26 class CmdLineArgs {
27 
28  public:
29  CmdLineArgs(int argc, char* argv[]);
30  void printHelp(const char* argv0);
31  void getArgs(int argc, char* argv[]);
32  void checkArgs(const char* argv0);
33 
34  int event_selection;
35  int run;
36  int numdivisions;
37  int division;
38  int anitaversion;
39  int tag_output_as_mc;
40  TString settings_filename;
41  TString output_filename;
42 
43 };
44 
45 
46 
47 }
48 
49 #endif
void printHelp(const char *argv0)
A simple command line option parser.
Namespace which wraps everything in the library.
void getArgs(int argc, char *argv[])
CmdLineArgs(int argc, char *argv[])