Changeset 2219 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 06/23/03 15:41:08 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MAGIC.h
r1912 r2219 53 53 #endif 54 54 55 externMLog gLog;55 R__EXTERN MLog gLog; 56 56 57 57 #endif -
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r2209 r2219 110 110 111 111 gROOT->GetListOfCleanups()->Add(this); // To remove fDisplay 112 SetBit(kMustCleanup); 112 113 113 114 *fLog << inf << underline << "Instantiated MEvtLoop (" << name << "), using ROOT v" << ROOTVER << endl; … … 350 351 // for developers or use in special jobs only! 351 352 // 352 Bool_t MEvtLoop::Process(Int_t maxcnt)353 Int_t MEvtLoop::Process(Int_t maxcnt) 353 354 { 354 355 if (!fTaskList) -
trunk/MagicSoft/Mars/mbase/MEvtLoop.h
r2209 r2219 61 61 62 62 Bool_t PreProcess(const char *tlist="MTaskList"); 63 Bool_tProcess(Int_t maxcnt);63 Int_t Process(Int_t maxcnt); 64 64 Bool_t PostProcess() const; 65 65 -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r2173 r2219 57 57 #endif 58 58 59 #undef DEBUG 60 //#define DEBUG 61 59 62 ClassImp(MParContainer); 60 63 … … 75 78 76 79 fDisplay = named.fDisplay; 80 } 81 82 MParContainer::~MParContainer() 83 { 84 #ifdef DEBUG 85 *fLog << all << "Deleting " << GetDescriptor() << endl; 86 #endif 77 87 } 78 88 -
trunk/MagicSoft/Mars/mbase/MParContainer.h
r2173 r2219 63 63 MParContainer(const MParContainer &named); 64 64 MParContainer& operator=(const MParContainer& rhs); 65 virtual ~MParContainer() {}65 virtual ~MParContainer(); 66 66 67 67 virtual TObject *Clone(const char *newname="") const;
Note:
See TracChangeset
for help on using the changeset viewer.