GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4TaskStatus.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef TGO4TASKSTATUS_H
15#define TGO4TASKSTATUS_H
16
17#include "TGo4Status.h"
18
20
24class TGo4TaskStatus : public TGo4Status {
25 friend class TGo4Task;
26 friend class TGo4Slave;
27
28 public:
29
31
32 virtual ~TGo4TaskStatus();
33
34 Bool_t IsInitDone() const { return fbInitDone; }
35
36 Bool_t IsTerminating() const { return fbTerminating; }
37
38 Bool_t IsAutoStart() const { return fbAutoStart; }
39
40 Bool_t IsAutoCreate() const { return fbAutoCreate; }
41
42 Bool_t IsAppBlocking() const { return fbAppBlocking; }
43
45
47 void Print(Option_t *opt = "") const override;
48
49 protected:
50
51 void SetFlags(Bool_t blocking, Bool_t autocreate, Bool_t autostart, Bool_t terminating, Bool_t initdone);
52
54
55 Bool_t fbAppBlocking{kFALSE};
56 Bool_t fbAutoCreate{kFALSE};
57 Bool_t fbAutoStart{kFALSE};
58 Bool_t fbTerminating{kFALSE};
59
63 Bool_t fbInitDone{kFALSE};
64
65 TGo4TaskStatus(const char *name);
66
67 ClassDefOverride(TGo4TaskStatus,1)
68};
69
70#endif //TGO4TASKSTATUS_H
Task status.
Bool_t IsAppBlocking() const
Bool_t IsAutoCreate() const
Bool_t IsInitDone() const
virtual ~TGo4TaskStatus()
friend class TGo4Task
Bool_t IsAutoStart() const
void Print(Option_t *opt="") const override
method to printout status information on stdout;
void SetTaskHandlerStatus(TGo4TaskHandlerStatus *thstate)
void SetFlags(Bool_t blocking, Bool_t autocreate, Bool_t autostart, Bool_t terminating, Bool_t initdone)
Bool_t IsTerminating() const
TGo4TaskHandlerStatus * fxTaskHandlerStatus
aggregationByValue 1
TGo4TaskHandlerStatus * GetTaskHandlerStatus() const
friend class TGo4Slave