GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComDeleteObject.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComDeleteObject.cxx 1493 2015-06-08 15:15:15Z 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 "TGo4ComDeleteObject.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisImp.h"
18 #include "TGo4AnalysisClientImp.h"
19 
21  TGo4AnalysisObjectCommand("ANDelete","delete object by name", obname)
22 {
23  GO4TRACE((12,"TGo4ComDeleteObject::TGo4ComDeleteObject(const char*) ctor",__LINE__, __FILE__));
24  SetReceiverName("AnalysisClient"); // this command needs client as receiver
25  // to send back status message
26 
28 }
29 
31  TGo4AnalysisObjectCommand("ANDelete","delete object by name", "dummy")
32 {
33  GO4TRACE((12,"TGo4ComDeleteObject::TGo4ComDeleteObject() ctor",__LINE__, __FILE__));
34  SetReceiverName("AnalysisClient"); // this command needs client as receiver
35  // to send back status message
37 }
38 
40 {
41  GO4TRACE((12,"TGo4ComDeleteObject::~TGo4ComDeleteObject() dtor",__LINE__, __FILE__));
42 }
43 
45 {
46  GO4TRACE((12,"TGo4ComDeleteObject::ExeCom()",__LINE__, __FILE__));
47 
49  if(cli==0) {
50  GO4TRACE((11,"TGo4ComDeleteObject::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
51  TGo4Log::Debug(" !!! %s : NO RECEIVER ERROR!!!",GetName());
52  return 1;
53  }
54 
56  if(ana)
57  {
58  const char* obname = GetObjectName();
59  if(ana->DeleteObjects(obname))
60  {
61  cli->SendStatusMessage(1,kTRUE,TString::Format(
62  "Deleted Object %s (all deletables of this folder, resp.)", obname));
63  }
64  else
65  {
66  cli->SendStatusMessage(2,kTRUE,TString::Format(
67  "Could not delete object %s !", obname));
68  }
69  }
70  else
71  {
72  cli->SendStatusMessage(3, kTRUE,TString::Format(
73  " %s ERROR no analysis ", GetName()));
74  } // if(ana)
75 
76  return -1;
77 }
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
const char * GetObjectName() const
Bool_t DeleteObjects(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