GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComClearObject.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComClearObject.cxx 1033 2013-11-05 15:30:01Z 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 "TGo4ComClearObject.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisImp.h"
18 #include "TGo4AnalysisClientImp.h"
19 
21 :TGo4AnalysisObjectCommand("ANClearObject",
22  "clears object by name",
23  "his")
24 {
25  GO4TRACE((12,"TGo4ComClearObject::TGo4ComClearObject() ctor",__LINE__, __FILE__));
26  SetReceiverName("AnalysisClient"); // this command needs client as receiver
27  // to send back status message
29 }
30 
32 :TGo4AnalysisObjectCommand("ANClearObject",
33  "clears object by name",
34  name)
35 {
36  GO4TRACE((12,"TGo4ComClearObject::TGo4ComClearObject(const char*) ctor",__LINE__, __FILE__));
37  SetReceiverName("AnalysisClient"); // this command needs client as receiver
38  // to send back status message
40 }
41 
42 
44 {
45  GO4TRACE((12,"TGo4ComClearObject::~TGo4ComClearObject() dtor",__LINE__, __FILE__));
46 }
47 
48 
49 
51 {
52  GO4TRACE((12,"TGo4ComClearObject::ExeCom()",__LINE__, __FILE__));
53 
55  if (cli==0) {
56  GO4TRACE((11,"TGo4ComClearObject::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
57  TGo4Log::Debug(" !!! %s: NO RECEIVER ERROR!!!",GetName());
58  return 1;
59  }
60 
62  if(ana==0) {
63  cli->SendStatusMessage(3, kTRUE,TString::Format(" %s ERROR no analysis ", GetName()));
64  return -1;
65  }
66 
67  const char* obname = GetObjectName();
68  Bool_t ok = ana->ClearObjects(obname);
69  if(ok) {
70  cli->SendStatusMessage(1,kTRUE,TString::Format("Object %s was cleared.", obname));
71  } else {
72  cli->SendStatusMessage(2,kTRUE,TString::Format("Could not clear object %s", obname));
73  } // if(ob)
74 
75  return -1;
76 }
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
virtual Int_t ExeCom()
const char * GetObjectName() const
Bool_t ClearObjects(const char *name)
void SetProtection(Go4CommandMode_t m)
Definition: TGo4Command.h:105
#define GO4TRACE(X)
Definition: TGo4Log.h:26
static TGo4Analysis * Instance()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270