using namespace std;
#include <iostream> // to get cout etc
#include "myRootStuff.cc"

int main(int argc, char ** argv);

int main(int argc, char ** argv)
{
  char inputfile[256]="";
  bool file = false;
  for(int iArg=0; iArg < argc; iArg++)
  {
    if(!strcasecmp(argv[iArg],"-file"))
    {
      file = true;
      strcpy( inputfile, argv[++iArg] );
    }
  }

  if(file) myRootStuff(inputfile);
  else 
  {
    cout << "You need to specify a file"<< endl;
  }
}
