123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include "UTask.h"
- //____________________________________________________________________
- //
- // UTask
- //
- // Base abstract class for tasks. User derived classe has to
- // override pure virtual methods Init, Exec and Finish
- //
- //--------------------------------------------------------------------
- UTask::UTask()
- {
- // Default constructor
- fVerbose = 1;
- }
- //--------------------------------------------------------------------
- //--------------------------------------------------------------------
- UTask::UTask(const char *name, Int_t verbose)
- : TTask(name, "UTask")
- {
- // Standard constructor
- fVerbose = verbose;
- }
- //--------------------------------------------------------------------
- //--------------------------------------------------------------------
- UTask::~UTask()
- {
- // Destructor
- }
- //--------------------------------------------------------------------
- ClassImp(UTask);
|