GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4ComGetEnvelope.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 "TGo4ComGetEnvelope.h"
15
16#include "TGo4Log.h"
18#include "TGo4AnalysisImp.h"
20#include "TGo4ObjEnvelope.h"
21
22TGo4ComGetEnvelope::TGo4ComGetEnvelope(const char *obname, const char *foldername) :
23 TGo4AnalysisObjectCommand("ANGetEnvelope","Get an arbitrary object from analysis",obname)
24{
25 GO4TRACE((12,"TGo4ComGetEnvelope::TGo4ComGetEnvelope(const char *) ctor",__LINE__, __FILE__));
26 SetReceiverName("AnalysisClient"); // this command needs client as receiver
27 SetFolderName(foldername);
28}
29
32{
33 GO4TRACE((12,"TGo4ComGetEnvelope::TGo4ComGetEnvelope() ctor",__LINE__, __FILE__));
34 SetReceiverName("AnalysisClient"); // this command needs client as receiver
35 SetName("ANGetEnvelope");
36 SetDescription("Get an arbitrary object from analysis");
37}
38
40{
41 GO4TRACE((12,"TGo4ComGetEnvelope::ExeCom()",__LINE__, __FILE__));
42
44 if (!cli) {
45 GO4TRACE((11,"TGo4ComGetEnvelope::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
46 TGo4Log::Debug(" !!! %s : NO RECEIVER ERROR!!!",GetName());
47 return 1;
48 }
49
50 GO4TRACE((11,"TGo4ComGetEnvelope::ExeCom() - found valid receiver",__LINE__, __FILE__));
51
53
55 cli->SendObject(envelope, GetTaskName());
56 delete envelope;
57
58 return -1;
59}
#define GO4TRACE(X)
Definition TGo4Log.h:25
const char * GetObjectName() const
access to the object name under command.
void SetFolderName(const char *name)
TObject * GetAsTObject(const char *name, const char *folder=nullptr)
Searches for object by name in all go4 folders.
static TGo4Analysis * Instance()
return analysis instance
TGo4AnalysisObjectManager * ObjectManager() const
Returns pointer on analysis object manager.
Int_t ExeCom() override
Do the command action.
TGo4CommandReceiver * fxReceiverBase
void SetDescription(const char *)
void SetReceiverName(const char *)
const char * GetTaskName() const
static void Debug(const char *text,...) GO4_PRINTF_ARGS
User shortcut for message with prio 0.
Definition TGo4Log.cxx:281
void SendObject(TObject *obj, const char *receiver=nullptr)
Send object via data channel to the server.