Index: trunk/MagicSoft/Mars/mars.cc
===================================================================
--- trunk/MagicSoft/Mars/mars.cc	(revision 8683)
+++ trunk/MagicSoft/Mars/mars.cc	(revision 8684)
@@ -45,11 +45,10 @@
     gLog << all << endl;
     gLog << "Sorry the usage is:" << endl;
-    gLog << " mars [options] filename|number [path]" << endl << endl;
+    gLog << " mars [options] filename|number" << endl << endl;
     gLog << " Arguments:" << endl;
-    gLog << "   filename: Name of a merpped raw file, a calibrated (Y)," << endl;
+    gLog << "   filename: Name of a merpped raw file, a calibrated (Y) file," << endl;
     gLog << "             sequence file or sequence number." << endl;
-    gLog << "   path:     Path where the data is stored in case of a" << endl;
-    gLog << "             sequence (datacenter default if omitted)." << endl << endl;
     gLog << " Options:" << endl;
+    gLog << "   --ind=path                Path to files, valid if sequence file or number given." << endl;
     gLog << "   --config=mars.rc:         Change configuration file" << endl;
     gLog << "                             <not yet implemented!>" << endl;
@@ -104,5 +103,6 @@
 
     //const Bool_t  kIsSequence = arg.HasOnlyAndRemove("--seq");
-    const TString kConfig = arg.GetStringAndRemove("--config=", "mars.rc");
+    const TString kConfig  = arg.GetStringAndRemove("--config=", "mars.rc");
+    const TString kInpathD = arg.GetStringAndRemove("--ind=", "");
 
     if (arg.GetNumOptions()>0)
@@ -117,5 +117,5 @@
     // check for the right usage of the program
     //
-    if (arg.GetNumArguments()>2)
+    if (arg.GetNumArguments()>1)
     {
         gLog << warn << "WARNING - Too many arguments..." << endl;
@@ -128,5 +128,4 @@
     //
     const TString kFilename = arg.GetArgumentStr(0);
-    const TString kInpathD  = arg.GetArgumentStr(1);
 
     //if (!kIsSequence && !InflateRun(kFilename))
@@ -144,5 +143,5 @@
     if (gROOT->IsBatch() || !gClient)
     {
-        gLog << "Bombing... maybe your DISPLAY variable is not set correctly!" << endl;
+        gLog << err << "Bombing... maybe your DISPLAY variable is not set correctly!" << endl;
         return 1;
     }
