Changeset 1027 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 11/01/01 14:56:17 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MAGIC.h
r1018 r1027 37 37 //This will be fixed soon. It doesn't work with Alphas at the moment 38 38 class MLog; 39 #if !defined __CINT__ || defined __LINUX__39 #if !defined (__CINT__) || defined (__LINUX__) 40 40 extern MLog gLog; 41 41 #endif -
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r1020 r1027 97 97 // list is calles by the destructor of MEvtLoop, otherwise not. 98 98 // 99 inline void MEvtLoop::SetOwner(Bool_t enable=kTRUE)99 void MEvtLoop::SetOwner(Bool_t enable) 100 100 { 101 101 enable ? SetBit(kIsOwner) : ResetBit(kIsOwner); -
trunk/MagicSoft/Mars/mbase/MParList.cc
r1024 r1027 111 111 // by the destructor 112 112 // 113 inlinevoid MParList::SetOwner(Bool_t enable)113 void MParList::SetOwner(Bool_t enable) 114 114 { 115 115 enable ? SetBit(kIsOwner) : ResetBit(kIsOwner); -
trunk/MagicSoft/Mars/mbase/MTask.cc
r1003 r1027 148 148 // If Process is executed, the execution counter is increased. 149 149 // 150 inlineBool_t MTask::CallProcess()150 Bool_t MTask::CallProcess() 151 151 { 152 152 // -
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r1023 r1027 100 100 // by the destructor 101 101 // 102 inlinevoid MTaskList::SetOwner(Bool_t enable)102 void MTaskList::SetOwner(Bool_t enable) 103 103 { 104 104 enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
Note:
See TracChangeset
for help on using the changeset viewer.