Changeset 609 for trunk/MagicSoft/Mars/mbase/MTask.cc
- Timestamp:
- 02/22/01 14:30:10 (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MTask.cc
r458 r609 37 37 #include "MTask.h" 38 38 39 #include <string.h>40 #include <iostream.h>41 42 39 ClassImp(MTask) 43 40 44 41 Bool_t MTask::PreProcess( MParList *pList ) 45 42 { 46 //47 // This is processed before the eventloop starts48 //49 // It is the job of the PreProcess to connect the tasks50 // with the right container in the parameter list.51 //52 // the virtual implementation returns kTRUE53 //54 return kTRUE;43 // 44 // This is processed before the eventloop starts 45 // 46 // It is the job of the PreProcess to connect the tasks 47 // with the right container in the parameter list. 48 // 49 // the virtual implementation returns kTRUE 50 // 51 return kTRUE; 55 52 } 56 57 53 58 54 Bool_t MTask::Process() 59 55 { 60 //61 // This is processed for every event in the eventloop62 //63 // the virtual implementation returns kTRUE64 //65 return kTRUE;56 // 57 // This is processed for every event in the eventloop 58 // 59 // the virtual implementation returns kTRUE 60 // 61 return kTRUE; 66 62 } 67 63 68 64 Bool_t MTask::PostProcess() 69 65 { 70 //71 // This is processed after the eventloop starts72 //73 // the virtual implementation returns kTRUE74 //75 return kTRUE;66 // 67 // This is processed after the eventloop starts 68 // 69 // the virtual implementation returns kTRUE 70 // 71 return kTRUE; 76 72 } 77 73
Note:
See TracChangeset
for help on using the changeset viewer.