Changeset 8426 for trunk/MagicSoft/Mars
- Timestamp:
- 04/20/07 14:13:31 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MTask.cc
r7887 r8426 18 18 ! Author(s): Thomas Bretz, 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-200 320 ! Copyright: MAGIC Software Development, 2000-2007 21 21 ! 22 22 ! … … 109 109 #include "MStatusDisplay.h" 110 110 111 #undef DEBUG_PROCESS 112 //#define DEBUG_PROCESS 113 111 114 ClassImp(MTask); 112 115 … … 126 129 } 127 130 131 // -------------------------------------------------------------------------- 132 // 133 // Destructor. Delete fStopwatch and fListOfBranches 134 // 128 135 MTask::~MTask() 129 136 { … … 132 139 } 133 140 141 // -------------------------------------------------------------------------- 142 // 143 // Initialize fFilter with filter and if not null add the result of 144 // GetDataMember from the filter to the branch list. 145 // 134 146 void MTask::SetFilter(MFilter *filter) 135 147 { … … 194 206 // -------------------------------------------------------------------------- 195 207 // 196 // Copy constructor. 208 // Copy constructor. Reset MInputStreamID, copy pointer to fFilter and 209 // copy the contents of fListOfBranches 197 210 // 198 211 MTask::MTask(MTask &t) : MInputStreamID() … … 265 278 fNumExecutions++; 266 279 280 #ifdef DEBUG_PROCESS 281 *fLog << all << flush << GetName() << "..." << flush; 282 #endif 283 267 284 const Int_t rc = Process(); 285 286 #ifdef DEBUG_PROCESS 287 *fLog << all << flush << "done." << endl; 288 #endif 268 289 269 290 if (!HasAccelerator(kAccDontTime))
Note:
See TracChangeset
for help on using the changeset viewer.