Ignore:
Timestamp:
02/15/09 23:12:04 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/sponde.cc

    r9276 r9343  
    5050    gLog << "   -b                        Batch mode (no graphical output to screen)" << endl<<endl;
    5151    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;
    5458    gLog << endl;
    5559    gLog << " Options:" << endl;
     
    9599        return 0xff;
    96100
     101    MLog::RedirectErrorHandler(MLog::kColor);
     102
    97103    //
    98104    // Evaluate arguments
     
    129135    const Bool_t  kForceTheta    =  arg.HasOnlyAndRemove("--force-theta");
    130136    const Bool_t  kForceRunTime  =  arg.HasOnlyAndRemove("--force-runtime");
     137    const Bool_t  kForceOnTimeFit=  arg.HasOnlyAndRemove("--force-ontimefit");
    131138
    132139    //
     
    254261        job.ForceTheta(kForceTheta);
    255262        job.ForceRunTime(kForceRunTime);
     263        job.ForceOnTimeFit(kForceOnTimeFit);
    256264
    257265        if (!job.Process(seq))
Note: See TracChangeset for help on using the changeset viewer.