Ignore:
Timestamp:
02/26/04 10:05:37 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mreport
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mreport/MReport.cc

    r2892 r3324  
    110110        return kFALSE;
    111111
     112    // return -1: This is the special case: out of time limit
    112113    if (start && *fTime<start)
    113         return kCONTINUE;
     114        return -1;
    114115    if (stop  && *fTime>stop)
    115         return kCONTINUE;
     116        return -1;
    116117
    117118    const Int_t rc = InterpreteBody(str);
  • trunk/MagicSoft/Mars/mreport/MReportFileRead.cc

    r2892 r3324  
    264264        *fLog << warn << "WARNING - Interpretation of '" << rep->GetName() << "' failed (Line #" << fNumLine << ")... skipped." << endl;
    265265        break;
     266    case -1: // This is the special case: out of time limit
     267        return kCONTINUE;
    266268    }
    267269
Note: See TracChangeset for help on using the changeset viewer.