Ignore:
Timestamp:
06/12/01 13:08:58 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r754 r843  
    251251void MParList::Print(Option_t *t)
    252252{
    253   *fLog << dbginf << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl;
    254   *fLog << endl;
    255  
    256 }
    257 
     253    *fLog << dbginf << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl;
     254    *fLog << endl;
     255}
     256
     257// --------------------------------------------------------------------------
     258//
     259//   Sets the flags off all containers in the list (and the list
     260//   itself) to unchanged
     261//
     262void MParList::SetHasChanged(Bool_t flag)
     263{
     264    TIter Next(&fContainer);
     265
     266    MParContainer *cont=NULL;
     267
     268    //
     269    // loop over all tasks for preproccesing
     270    //
     271    while ( (cont=(MParContainer*)Next()) )
     272        cont->SetHasChanged(flag);
     273
     274    MParContainer::SetHasChanged(flag);
     275}
     276
     277void MParList::Reset()
     278{
     279    return;
     280    TIter Next(&fContainer);
     281
     282    MParContainer *cont=NULL;
     283
     284    //
     285    // loop over all tasks for preproccesing
     286    //
     287    while ( (cont=(MParContainer*)Next()) )
     288        cont->Reset();
     289}
Note: See TracChangeset for help on using the changeset viewer.