GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComLoadAnalysisStatus.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComLoadAnalysisStatus.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 
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisClientImp.h"
18 #include "TGo4RuntimeException.h"
19 #include "TGo4AnalysisImp.h"
20 #include "TGo4RemoteCommand.h"
21 
23  TGo4AnalysisCommand("ANLoad","Load Analysis Settings from file")
24 {
25  GO4TRACE((12,"TGo4ComLoadAnalysisStatus::TGo4ComLoadAnalysisStatus() ctor",__LINE__, __FILE__));
26  SetReceiverName("AnalysisClient"); // this command needs client as receiver
27  // override default receiver
29  SetFileName(filename);
30 }
31 
33  TGo4AnalysisCommand("ANLoad","Load Analysis Settings from file")
34 {
35  GO4TRACE((12,"TGo4ComLoadAnalysisStatus::TGo4ComLoadAnalysisStatus() ctor",__LINE__, __FILE__));
36  SetReceiverName("AnalysisClient"); // this command needs client as receiver
37  // override default receiver
40 }
41 
43 {
44  GO4TRACE((12,"TGo4ComLoadAnalysisStatus::~TGo4ComLoadAnalysisStatus() dtor",__LINE__, __FILE__));
45 }
46 
48 {
49  if(remcom==0) return;
50  SetFileName(remcom->GetString(0));
51 }
52 
54 {
55  GO4TRACE((12,"TGo4ComLoadAnalysisStatus::ExeCom()",__LINE__, __FILE__));
56 
58  if (cli==0) {
59  GO4TRACE((11,"TGo4ComLoadAnalysisStatus::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
60  TGo4Log::Debug(" !!! ComLoadAnalysisStatus ''%s'': NO RECEIVER ERROR!!!",GetName());
61  throw TGo4RuntimeException(); // never come here!
62  return 1;
63  }
64 
65  GO4TRACE((11,"TGo4ComLoadAnalysisStatus::ExeCom() - found valid receiver",__LINE__, __FILE__));
66  // TGo4Log::Debug(" Executing ComLoadAnalysisStatus... ");
68  if(ana) {
69  Bool_t ok=ana->LoadStatus( GetFileName() );
70  if(ok)
71  {
72  cli->SendStatusMessage(1, kFALSE, TString::Format(
73  "Loaded analysis status from file %s.", GetFileName()));
74  }
75  else
76  {
77  cli->SendStatusMessage(3, kFALSE,TString::Format(
78  "ERROR on Loading analysis status from file %s", GetFileName()));
79  } // if(ok)
80 
81  }
82  else
83  {
84  cli->SendStatusMessage(3, kTRUE, TString::Format(
85  " %s ERROR no analysis", GetName()));
86  } // if(ana)
87 
88 
89  return -1;
90 }
91 
void SetReceiverName(const char *)
Definition: TGo4Command.cxx:92
Bool_t LoadStatus(const char *filename=0)
virtual void SendStatusMessage(Int_t level, Bool_t printout, const TString &text)
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:117
void SetFileName(const char *name)
static const char * fgcDEFAULTSTATUSFILENAME
virtual void Set(TGo4RemoteCommand *remcon)
void SetProtection(Go4CommandMode_t m)
Definition: TGo4Command.h:105
const char * GetString(Int_t i) const
#define GO4TRACE(X)
Definition: TGo4Log.h:26
static TGo4Analysis * Instance()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270