GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4TaskHandlerException.cxx
Go to the documentation of this file.
1 // $Id: TGo4TaskHandlerException.cxx 478 2009-10-29 12:26:09Z linev $
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 für 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 
15 
16 #include "TGo4Log.h"
17 #include "TGo4TaskHandler.h"
19 
21 {
22  fxDescription= "!!!-- Go4 TaskHandler Exception --!!!";
23  fxCaller=0;
24  fxTaskHandler=taskhandler;
25  if(fxTaskHandler)
26  {
27  // o.k. we have a given taskhandler
29  }
30  else
31  {
32  // wrong call with zero pointer: dummy init of manager, will be checked in Handle()
34  }
35 }
36 
38 {
39  fxDescription= "!!!-- Go4 TaskHandler Exception --!!!";
40  fxCaller=run;
41  if(fxCaller)
42  {
44  }
45  else
46  {
47  fxTaskHandler=0;
48  }
49 
50  if(fxTaskHandler)
51  {
52  // o.k. we have a given taskhandler
54  }
55  else
56  {
57  // wrong call with zero pointer: dummy init of manager, will be checked in Handle()
59  }
60 }
61 
63 {
64 }
TGo4ThreadManager * fxThreadManager
TGo4ThreadManager * GetThreadManager() const
TGo4TaskHandler * GetTaskHandler()
TGo4TaskHandlerRunnable * fxCaller
TString fxDescription
Definition: TGo4Exception.h:38