Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 9206)
+++ trunk/MagicSoft/Mars/Changelog	(revision 9207)
@@ -23,2 +23,11 @@
    * mhbase/MH.h:
      - commited missing changes from last year
+
+   * merpp.cc:
+     - fixed a description
+
+   * sponde.cc:
+     - added "Multiple dataset at once"
+
+   * star.cc:
+     - removed obsolete -ff option from output
Index: trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 9206)
+++ trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 9207)
@@ -297,5 +297,5 @@
         {
         case MStatusDisplay::kLoopPause:
-            fDisplay->SetStatusLine1("Paused.");
+            fDisplay->SetStatusLine1(MString::Format("Paused after %d", num-1));
             while (fDisplay && fDisplay->CheckStatus()==MStatusDisplay::kLoopPause)
             {
@@ -303,7 +303,9 @@
                 gSystem->Sleep(1);
             }
-            break;
+            // FALLTHROUGH
         case MStatusDisplay::kLoopStep:
-            fDisplay->SetPause();
+            if (fDisplay && fDisplay->CheckStatus()==MStatusDisplay::kLoopStep)
+                fDisplay->SetPause();
+            // FALLTHROUGH
         case MStatusDisplay::kLoopNone:
             break;
Index: trunk/MagicSoft/Mars/merpp.cc
===================================================================
--- trunk/MagicSoft/Mars/merpp.cc	(revision 9206)
+++ trunk/MagicSoft/Mars/merpp.cc	(revision 9207)
@@ -59,5 +59,5 @@
     gLog << " Arguments:" << endl;
     gLog << "   [tel:]seqnumber           Telescope and sequence number to mbe merpped." << endl;
-    gLog << "   inpath                    The input files whether the CC files are." << endl;
+    gLog << "   inpath                    The input  path where the CC files   are." << endl;
     gLog << "   outpath                   The output path where the outputfile are or stored." << endl;
     gLog << "   sumfile.txt               A central control report summary file (--summary can be omitted)." << endl;
Index: trunk/MagicSoft/Mars/sponde.cc
===================================================================
--- trunk/MagicSoft/Mars/sponde.cc	(revision 9206)
+++ trunk/MagicSoft/Mars/sponde.cc	(revision 9207)
@@ -68,4 +68,8 @@
     gLog << "   --print-files             Print Files taken from Sequences ('+' found, '-' missing)" << endl;
     gLog << "   --config=sponde.rc        Resource file [default=sponde.rc]" << endl;
+    gLog << "   --ind=path                Path to mc/star files [default=datacenter path]"  << endl;
+    gLog << "   --ins=path                Path to sequence files [default=datacenter path]"   << endl;
+    gLog << "   --dataset=number          Choose a dataset from a collection of datasets"     << endl;
+    gLog << "                             in your file (for more details see MDataSet)"       << endl;
     gLog << endl;
     gLog << "   --version, -V             Show startup message with version number" << endl;
@@ -112,4 +116,7 @@
     const Bool_t  kPrintSeq     =  arg.HasOnlyAndRemove("--print-ds");
     const Bool_t  kPrintFiles   =  arg.HasOnlyAndRemove("--print-files");
+    const Int_t   kNumDataset    = arg.GetIntAndRemove("--dataset=", -1);
+    const TString kPathDataFiles = arg.GetStringAndRemove("--ind=",  "");
+    const TString kPathSequences = arg.GetStringAndRemove("--ins=",  "");
     const Bool_t  kDebugMem     =  arg.HasOnlyAndRemove("--debug-mem");
     Int_t  kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0;
@@ -193,5 +200,5 @@
     // Setup sequence and check its validity
     //
-    MDataSet seq(kDataset);
+    MDataSet seq(kDataset, (UInt_t)kNumDataset, kPathSequences, kPathDataFiles);
     if (kPrintSeq || kPrintFiles)
     {
Index: trunk/MagicSoft/Mars/star.cc
===================================================================
--- trunk/MagicSoft/Mars/star.cc	(revision 9206)
+++ trunk/MagicSoft/Mars/star.cc	(revision 9207)
@@ -63,9 +63,8 @@
     gLog << "   -q                        Quit when job is finished" << endl;
     gLog << "   -f                        Force overwrite of existing files" << endl;
-    gLog << "   -ff                       Force execution if not all files found" << endl;
+//    gLog << "   -ff                       Force execution if not all files found" << endl;
     gLog << "   --ind=path                Path where to search for the calibrated data (Y)" << endl;
     gLog << "                             [default=standard path in datacenter]" << endl;
     gLog << "   --out=path                Path to write the all results to [def=local path]" << endl;
-    gLog << "                             (overwrites --outc and --outy)" << endl;
     gLog << "   --dev-null                Suppress output of I-files (for test purpose)" << endl;
     gLog << "   --no-muons                Switch off Muon analysis (for fast tests)" << endl;
