GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TGo4ComGetNamesList.cxx
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 #include "TGo4ComGetNamesList.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisClientImp.h"
19 #include "TGo4AnalysisImp.h"
20 
22 {
23  GO4TRACE((12,"TGo4ComGetNamesList::TGo4ComGetNamesList() ctor",__LINE__, __FILE__));
24  SetReceiverName("AnalysisClient"); // this command needs client as receiver
25  // override default receiver
26  SetName("ANNames");
27  SetDescription("Requests list of names and folders");
28 
29 }
30 
32 {
33  GO4TRACE((12,"TGo4ComGetNamesList::ExeCom()",__LINE__, __FILE__));
34 
36  if(!cli) {
37  GO4TRACE((11,"TGo4ComGetNamesList::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
38  TGo4Log::Debug(" !!! ComGetNamesList ''%s'': NO RECEIVER ERROR!!!",GetName());
39  return 1;
40  }
41 
42  cli->SendStatusMessage(1,kFALSE, TString::Format(
43  "%s::Analysis nameslist was requested from client %s", GetTaskName(), GetTaskName()));
44  //cli->SendNamesList();
46  ana->UpdateNamesList();
47  TGo4AnalysisObjectNames *state = ana->GetNamesList();
48  cli->SendObject(state, GetTaskName());
49  return -1;
50 
51 }
void SendObject(TObject *obj, const char *receiver=nullptr)
Definition: TGo4Slave.cxx:115
void SetReceiverName(const char *)
Definition: TGo4Command.cxx:93
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:116
TGo4AnalysisObjectNames * GetNamesList() const
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
static void Debug(const char *text,...) GO4_PRINTF_ARGS
Definition: TGo4Log.cxx:281
const char * GetTaskName() const
Definition: TGo4Command.cxx:99
void SetDescription(const char *)
#define GO4TRACE(X)
Definition: TGo4Log.h:25
static TGo4Analysis * Instance()