Changeset 698 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 03/22/01 12:24:47 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MEvtLoop.h
r604 r698 39 39 void Eventloop(Int_t maxcnt=-1, const char *tlist="MTaskList"); 40 40 41 ClassDef(MEvtLoop, 1) // Class to execute the tasks in a tasklist41 ClassDef(MEvtLoop, 0) // Class to execute the tasks in a tasklist 42 42 }; 43 43 -
trunk/MagicSoft/Mars/mbase/MLog.h
r609 r698 116 116 } 117 117 118 ClassDef(MLog, 1)118 ClassDef(MLog, 0) 119 119 }; 120 120 -
trunk/MagicSoft/Mars/mbase/MLogManip.h
r654 r698 53 53 // 54 54 #ifndef __CINT__ 55 #define dbginf __FILE__ << " " << __LINE__ << ": "55 #define dbginf __FILE__ << " l." << __LINE__ << ": " 56 56 #endif 57 57 // -
trunk/MagicSoft/Mars/mbase/MParList.cc
r667 r698 24 24 ClassImp(MParList) 25 25 26 // 27 // FIXME: The Automatic created classes are NEVER deleted!!!!! 28 // 29 26 30 MParList::MParList(const char *name, const char *title) 27 31 { … … 32 36 *fName = name ? name : "MParList"; 33 37 *fTitle = title ? title : "List of Parameter Containers"; 38 39 // 40 // This sets a flag that the list is the owner, which means 41 // that the destructor of the list deletes all it's objects 42 // 43 fAutodelete.SetOwner(); 34 44 } 35 45 … … 151 161 AddToList(pcont); 152 162 163 fAutodelete.Add(pcont); 164 153 165 // 154 166 // Find an object in the list. -
trunk/MagicSoft/Mars/mbase/MParList.h
r667 r698 27 27 private: 28 28 TOrdCollection fContainer; // Collection of Parameter and Data Containers 29 TOrdCollection fAutodelete; // All what this list contains is deleted in the destructor 29 30 30 31 public: … … 45 46 void Print(Option_t *t = NULL); 46 47 47 ClassDef(MParList, 1) //list of parameter containers (MParContainer)48 ClassDef(MParList, 0) // list of parameter containers (MParContainer) 48 49 }; 49 50 -
trunk/MagicSoft/Mars/mbase/MReadTree.h
r585 r698 36 36 UInt_t GetEntries() {return fNumEntries;} 37 37 38 ClassDef(MReadTree, 1) // Reads one tree38 ClassDef(MReadTree, 0) // Reads one tree 39 39 }; 40 40 -
trunk/MagicSoft/Mars/mbase/MTask.h
r609 r698 27 27 virtual Bool_t PostProcess(); 28 28 29 ClassDef(MTask, 1) //Abstract base class for a task29 ClassDef(MTask, 0) //Abstract base class for a task 30 30 }; 31 31 -
trunk/MagicSoft/Mars/mbase/MTaskList.h
r609 r698 41 41 void Print(Option_t *t = NULL); 42 42 43 ClassDef(MTaskList, 1) //collection of tasks to be performed in the eventloop43 ClassDef(MTaskList, 0) //collection of tasks to be performed in the eventloop 44 44 }; 45 45
Note:
See TracChangeset
for help on using the changeset viewer.