GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComInitAnalysis.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComInitAnalysis.cxx 1036 2013-11-06 10:21:12Z 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 
14 #include "TGo4ComInitAnalysis.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4Thread.h"
18 #include "TGo4AnalysisImp.h"
19 #include "TGo4AnalysisClientImp.h"
20 
22 :TGo4AnalysisCommand("ANInit","executes InitEventClasses of Analysis")
23 {
24  GO4TRACE((12,"TGo4ComInitAnalysis::TGo4ComInitAnalysis() ctor",__LINE__, __FILE__));
25  SetReceiverName("AnalysisClient"); // this command needs client as receiver
26  // override default receiver
28 }
29 
31 {
32  GO4TRACE((12,"TGo4ComInitAnalysis::~TGo4ComInitAnalysis() dtor",__LINE__, __FILE__));
33 }
34 
36 {
37  GO4TRACE((12,"TGo4ComInitAnalysis::ExeCom()",__LINE__, __FILE__));
38 
40  if (cli==0) {
41  GO4TRACE((11,"TGo4ComInitAnalysis::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
42  TGo4Log::Debug(" !!! ComInitAnalysis ''%s'': NO RECEIVER ERROR!!!",GetName());
43  return 1;
44  }
45 
46  GO4TRACE((11,"TGo4ComInitAnalysis::ExeCom() - found valid receiver",__LINE__, __FILE__));
48  if(ana) {
49  cli->SendStatusMessage(2, kTRUE,"INITIALISING submitted settings, PLEASE WAIT...");
50  TGo4Thread::Sleep(1000);
51  if(ana->InitEventClasses())
52  {
53  cli->SendStatusMessage(1, kTRUE,TString::Format(
54  "Analysis %s event classes were initialized.", ana->GetName()));
55  if(cli->MainIsRunning())
56  ana->PreLoop(); // re-init userpointers when init was done on the fly
57  }
58  else
59  {
60  cli->SendStatusMessage(3, kTRUE, TString::Format(
61  "Analysis %s initialization failed !!! ", ana->GetName()));
62  }
63  }
64  else
65  {
66  cli->SendStatusMessage(3, kTRUE, TString::Format(" %s ERROR no analysis", GetName()));
67  }
68 
69  return -1;
70 }
void SetReceiverName(const char *)
Definition: TGo4Command.cxx:92
virtual void SendStatusMessage(Int_t level, Bool_t printout, const TString &text)
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:117
Bool_t MainIsRunning()
Definition: TGo4Slave.h:92
static void Sleep(UInt_t millisecs)
Definition: TGo4Thread.cxx:336
virtual const char * GetName() const
void SetProtection(Go4CommandMode_t m)
Definition: TGo4Command.h:105
virtual Bool_t InitEventClasses()
#define GO4TRACE(X)
Definition: TGo4Log.h:26
static TGo4Analysis * Instance()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270