Changeset 6977 for trunk/MagicSoft/Mars/ganymed.cc
- Timestamp:
- 04/25/05 15:30:46 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/ganymed.cc
r6949 r6977 66 66 gLog << " --outf=filename Filename for output file (eg. status display)" << endl; 67 67 gLog << " --sum[=filename] Enable writing of summary file (events after cut0)" << endl; 68 gLog << " --res[=filename] Enable writing of result file (surviving events)" << endl; 68 // gLog << " --res[=filename] Enable writing of result file (surviving events)" << endl; 69 gLog << " --skip-res Disable writing of result events" << endl; 69 70 gLog << " --write-only Only write output files. No histograms filled." << endl; 70 71 gLog << " --print-ds Print Dataset information" << endl; … … 130 131 const Bool_t kWriteSummary = arg.HasOnlyAndRemove("--sum"); 131 132 const TString kNameSummary = arg.GetStringAndRemove("--sum="); 132 const Bool_t kWriteResult = arg.HasOnlyAndRemove("--res"); 133 const TString kNameResult = arg.GetStringAndRemove("--res="); 133 const Bool_t kSkipResult = arg.HasOnlyAndRemove("--skip-res"); 134 // const Bool_t kWriteResult = arg.HasOnlyAndRemove("--res"); 135 // const TString kNameResult = arg.GetStringAndRemove("--res="); 134 136 135 137 if (kWobbleModeOn && kWobbleModeOff) … … 237 239 job.SetNameOutFile(kOutfile); 238 240 job.SetNameSummaryFile(kNameSummary); 239 job.SetNameResultFile(kNameResult);241 //job.SetNameResultFile(kNameResult); 240 242 job.EnableWriteOnly(kWriteOnly); 241 243 job.EnableWobbleMode(iswobble); 242 244 job.EnableFullDisplay(kFullDisplay); 243 245 job.EnableMonteCarloMode(kIsMc); 246 job.EnableStorageOfResult(!kSkipResult); 244 247 if (kWriteSummary) // Don't change flag set in SetNameSummaryFile 245 248 job.EnableStorageOfSummary(); 246 if (kWriteResult) // Don't change flag set in SetNameSummaryFile247 job.EnableStorageOfResult();249 //if (kWriteResult) // Don't change flag set in SetNameSummaryFile 250 // job.EnableStorageOfResult(); 248 251 249 252 if (!job.ProcessFile(seq))
Note:
See TracChangeset
for help on using the changeset viewer.