Changeset 9343 for trunk/MagicSoft/Mars/sponde.cc
- Timestamp:
- 02/15/09 23:12:04 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/sponde.cc
r9276 r9343 50 50 gLog << " -b Batch mode (no graphical output to screen)" << endl<<endl; 51 51 gLog << " Operation Mode:" << endl; 52 gLog << " --force-theta Force execution even with non-fitting theta distributions." << endl; 53 gLog << " --force-runtime Force usage of runtime instead of eff. observation time." << endl; 52 gLog << " --force-theta Force execution even with non-fitting theta" << endl; 53 gLog << " distributions." << endl; 54 gLog << " --force-runtime Force usage of runtime instead of effective" << endl; 55 gLog << " observation time from fit in star." << endl; 56 gLog << " --force-ontimefit Force usage of effective on-time from a new fit to" << endl; 57 gLog << " the time-stamps (overwrites --force-runtime)." << endl; 54 58 gLog << endl; 55 59 gLog << " Options:" << endl; … … 95 99 return 0xff; 96 100 101 MLog::RedirectErrorHandler(MLog::kColor); 102 97 103 // 98 104 // Evaluate arguments … … 129 135 const Bool_t kForceTheta = arg.HasOnlyAndRemove("--force-theta"); 130 136 const Bool_t kForceRunTime = arg.HasOnlyAndRemove("--force-runtime"); 137 const Bool_t kForceOnTimeFit= arg.HasOnlyAndRemove("--force-ontimefit"); 131 138 132 139 // … … 254 261 job.ForceTheta(kForceTheta); 255 262 job.ForceRunTime(kForceRunTime); 263 job.ForceOnTimeFit(kForceOnTimeFit); 256 264 257 265 if (!job.Process(seq))
Note:
See TracChangeset
for help on using the changeset viewer.