Ignore:
Timestamp:
06/13/01 15:29:47 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MAGIC.h

    r690 r851  
    99///////////////////////////////////////////////////////////////////////////////
    1010
     11#ifndef ROOT_TROOT
    1112#include <TROOT.h>
     13#endif
    1214
    1315//
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r849 r851  
    6565MParContainer& MParContainer::operator=(const MParContainer& rhs)
    6666{
    67     if (this != &rhs) {
    68         TObject::operator=(rhs);
    69         *fName  = *(rhs.fName);
    70         *fTitle = *(rhs.fTitle);
    71         fLog    = rhs.fLog;
    72         fHasChanged = rhs.fHasChanged;
    73     }
     67    if (this == &rhs)
     68        return *this;
     69
     70    TObject::operator=(rhs);
     71
     72    *fName  = *(rhs.fName);
     73    *fTitle = *(rhs.fTitle);
     74
     75    fLog        = rhs.fLog;
     76    fHasChanged = rhs.fHasChanged;
     77
    7478    return *this;
    7579}
  • trunk/MagicSoft/Mars/mbase/MTaskList.cc

    r843 r851  
    227227    *fLog << "Postprocessing... " << flush;
    228228
    229     // FIXME: At the moment all containers are post processed independ of
     229    // FIXME: At the moment all tasks are post processed independ of
    230230    // whether it was preprocessed or not.
     231
     232    //
     233    // Reset the HasChanged flag.
     234    // Reset all containers.
     235    //
     236    fParList->SetHasChanged(kFALSE);
     237    fParList->Reset();
    231238
    232239    //
Note: See TracChangeset for help on using the changeset viewer.