Changeset 9207


Ignore:
Timestamp:
01/05/09 17:46:30 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9205 r9207  
    2323   * mhbase/MH.h:
    2424     - commited missing changes from last year
     25
     26   * merpp.cc:
     27     - fixed a description
     28
     29   * sponde.cc:
     30     - added "Multiple dataset at once"
     31
     32   * star.cc:
     33     - removed obsolete -ff option from output
  • trunk/MagicSoft/Mars/mbase/MEvtLoop.cc

    r9185 r9207  
    297297        {
    298298        case MStatusDisplay::kLoopPause:
    299             fDisplay->SetStatusLine1("Paused.");
     299            fDisplay->SetStatusLine1(MString::Format("Paused after %d", num-1));
    300300            while (fDisplay && fDisplay->CheckStatus()==MStatusDisplay::kLoopPause)
    301301            {
     
    303303                gSystem->Sleep(1);
    304304            }
    305             break;
     305            // FALLTHROUGH
    306306        case MStatusDisplay::kLoopStep:
    307             fDisplay->SetPause();
     307            if (fDisplay && fDisplay->CheckStatus()==MStatusDisplay::kLoopStep)
     308                fDisplay->SetPause();
     309            // FALLTHROUGH
    308310        case MStatusDisplay::kLoopNone:
    309311            break;
  • trunk/MagicSoft/Mars/merpp.cc

    r9141 r9207  
    5959    gLog << " Arguments:" << endl;
    6060    gLog << "   [tel:]seqnumber           Telescope and sequence number to mbe merpped." << endl;
    61     gLog << "   inpath                    The input files whether the CC files are." << endl;
     61    gLog << "   inpath                    The input  path where the CC files  are." << endl;
    6262    gLog << "   outpath                   The output path where the outputfile are or stored." << endl;
    6363    gLog << "   sumfile.txt               A central control report summary file (--summary can be omitted)." << endl;
  • trunk/MagicSoft/Mars/sponde.cc

    r9141 r9207  
    6868    gLog << "   --print-files             Print Files taken from Sequences ('+' found, '-' missing)" << endl;
    6969    gLog << "   --config=sponde.rc        Resource file [default=sponde.rc]" << endl;
     70    gLog << "   --ind=path                Path to mc/star files [default=datacenter path]"  << endl;
     71    gLog << "   --ins=path                Path to sequence files [default=datacenter path]"   << endl;
     72    gLog << "   --dataset=number          Choose a dataset from a collection of datasets"     << endl;
     73    gLog << "                             in your file (for more details see MDataSet)"       << endl;
    7074    gLog << endl;
    7175    gLog << "   --version, -V             Show startup message with version number" << endl;
     
    112116    const Bool_t  kPrintSeq     =  arg.HasOnlyAndRemove("--print-ds");
    113117    const Bool_t  kPrintFiles   =  arg.HasOnlyAndRemove("--print-files");
     118    const Int_t   kNumDataset    = arg.GetIntAndRemove("--dataset=", -1);
     119    const TString kPathDataFiles = arg.GetStringAndRemove("--ind=",  "");
     120    const TString kPathSequences = arg.GetStringAndRemove("--ins=",  "");
    114121    const Bool_t  kDebugMem     =  arg.HasOnlyAndRemove("--debug-mem");
    115122    Int_t  kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0;
     
    193200    // Setup sequence and check its validity
    194201    //
    195     MDataSet seq(kDataset);
     202    MDataSet seq(kDataset, (UInt_t)kNumDataset, kPathSequences, kPathDataFiles);
    196203    if (kPrintSeq || kPrintFiles)
    197204    {
  • trunk/MagicSoft/Mars/star.cc

    r9141 r9207  
    6363    gLog << "   -q                        Quit when job is finished" << endl;
    6464    gLog << "   -f                        Force overwrite of existing files" << endl;
    65     gLog << "   -ff                       Force execution if not all files found" << endl;
     65//    gLog << "   -ff                       Force execution if not all files found" << endl;
    6666    gLog << "   --ind=path                Path where to search for the calibrated data (Y)" << endl;
    6767    gLog << "                             [default=standard path in datacenter]" << endl;
    6868    gLog << "   --out=path                Path to write the all results to [def=local path]" << endl;
    69     gLog << "                             (overwrites --outc and --outy)" << endl;
    7069    gLog << "   --dev-null                Suppress output of I-files (for test purpose)" << endl;
    7170    gLog << "   --no-muons                Switch off Muon analysis (for fast tests)" << endl;
Note: See TracChangeset for help on using the changeset viewer.