Changeset 851 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 06/13/01 15:29:47 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MAGIC.h
r690 r851 9 9 /////////////////////////////////////////////////////////////////////////////// 10 10 11 #ifndef ROOT_TROOT 11 12 #include <TROOT.h> 13 #endif 12 14 13 15 // -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r849 r851 65 65 MParContainer& MParContainer::operator=(const MParContainer& rhs) 66 66 { 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 74 78 return *this; 75 79 } -
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r843 r851 227 227 *fLog << "Postprocessing... " << flush; 228 228 229 // FIXME: At the moment all containers are post processed independ of229 // FIXME: At the moment all tasks are post processed independ of 230 230 // 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(); 231 238 232 239 //
Note:
See TracChangeset
for help on using the changeset viewer.