Ignore:
Timestamp:
11/12/08 16:16:11 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MContinue.cc

    r8905 r9157  
    7373//
    7474MContinue::MContinue(const TString rule, const char *name, const char *title)
    75     : fTaskList(0)
     75    : fTaskList(0), fRc(kCONTINUE)
    7676{
    7777    fName  = name  ? name  : "MContinue";
     
    9696//
    9797MContinue::MContinue(MFilter *f, const char *name, const char *title)
    98     : fTaskList(0)
     98    : fTaskList(0), fRc(kCONTINUE)
    9999{
    100100    fName  = name  ? name  : "MContinue";
  • trunk/MagicSoft/Mars/mbase/MContinue.h

    r7801 r9157  
    2525    MTaskList *fTaskList;  //! pointer to the present tasklist
    2626
     27    Int_t fRc;
     28
    2729    // MTask
    2830    Int_t  PreProcess(MParList *list);
    29     Int_t  Process() { return kCONTINUE; }
     31    Int_t  Process() { return fRc; }
    3032    Int_t  PostProcess();
    3133
     
    4547    Bool_t IsInverted() const;
    4648
     49    void SetRc(Int_t rc) { fRc = rc; }
     50
    4751    // MParContainer
    4852    void SetDisplay(MStatusDisplay *d);
Note: See TracChangeset for help on using the changeset viewer.