Changeset 9207
- Timestamp:
- 01/05/09 17:46:30 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9205 r9207 23 23 * mhbase/MH.h: 24 24 - 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 297 297 { 298 298 case MStatusDisplay::kLoopPause: 299 fDisplay->SetStatusLine1( "Paused.");299 fDisplay->SetStatusLine1(MString::Format("Paused after %d", num-1)); 300 300 while (fDisplay && fDisplay->CheckStatus()==MStatusDisplay::kLoopPause) 301 301 { … … 303 303 gSystem->Sleep(1); 304 304 } 305 break;305 // FALLTHROUGH 306 306 case MStatusDisplay::kLoopStep: 307 fDisplay->SetPause(); 307 if (fDisplay && fDisplay->CheckStatus()==MStatusDisplay::kLoopStep) 308 fDisplay->SetPause(); 309 // FALLTHROUGH 308 310 case MStatusDisplay::kLoopNone: 309 311 break; -
trunk/MagicSoft/Mars/merpp.cc
r9141 r9207 59 59 gLog << " Arguments:" << endl; 60 60 gLog << " [tel:]seqnumber Telescope and sequence number to mbe merpped." << endl; 61 gLog << " inpath The input files whether the CC filesare." << endl;61 gLog << " inpath The input path where the CC files are." << endl; 62 62 gLog << " outpath The output path where the outputfile are or stored." << endl; 63 63 gLog << " sumfile.txt A central control report summary file (--summary can be omitted)." << endl; -
trunk/MagicSoft/Mars/sponde.cc
r9141 r9207 68 68 gLog << " --print-files Print Files taken from Sequences ('+' found, '-' missing)" << endl; 69 69 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; 70 74 gLog << endl; 71 75 gLog << " --version, -V Show startup message with version number" << endl; … … 112 116 const Bool_t kPrintSeq = arg.HasOnlyAndRemove("--print-ds"); 113 117 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=", ""); 114 121 const Bool_t kDebugMem = arg.HasOnlyAndRemove("--debug-mem"); 115 122 Int_t kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0; … … 193 200 // Setup sequence and check its validity 194 201 // 195 MDataSet seq(kDataset );202 MDataSet seq(kDataset, (UInt_t)kNumDataset, kPathSequences, kPathDataFiles); 196 203 if (kPrintSeq || kPrintFiles) 197 204 { -
trunk/MagicSoft/Mars/star.cc
r9141 r9207 63 63 gLog << " -q Quit when job is finished" << endl; 64 64 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; 66 66 gLog << " --ind=path Path where to search for the calibrated data (Y)" << endl; 67 67 gLog << " [default=standard path in datacenter]" << endl; 68 68 gLog << " --out=path Path to write the all results to [def=local path]" << endl; 69 gLog << " (overwrites --outc and --outy)" << endl;70 69 gLog << " --dev-null Suppress output of I-files (for test purpose)" << endl; 71 70 gLog << " --no-muons Switch off Muon analysis (for fast tests)" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.