GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComCloseAnalysis.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComCloseAnalysis.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 "TGo4ComCloseAnalysis.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisImp.h"
18 #include "TGo4AnalysisClientImp.h"
19 
21 :TGo4AnalysisCommand("ANClose","closes analysis event classes")
22 {
23  GO4TRACE((12,"TGo4ComCloseAnalysis::TGo4ComCloseAnalysis() ctor",__LINE__, __FILE__));
24  SetReceiverName("AnalysisClient"); // this command needs client as receiver
25  // override default receiver
27 }
28 
30 {
31  GO4TRACE((12,"TGo4ComCloseAnalysis::~TGo4ComCloseAnalysis() dtor",__LINE__, __FILE__));
32 }
33 
35 {
36  GO4TRACE((12,"TGo4ComCloseAnalysis::ExeCom() dtor",__LINE__, __FILE__));
37 
39  if (cli==0) {
40  GO4TRACE((11,"TGo4ComCloseAnalysis::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
41  TGo4Log::Debug(" !!! ComCloseAnalysis ''%s'': NO RECEIVER ERROR!!!",GetName());
42  return 1;
43  }
44 
45  GO4TRACE((11,"TGo4ComCloseAnalysis::ExeCom() - found valid receiver",__LINE__, __FILE__));
47  if(ana) {
48  if(cli->MainIsRunning()) ana->PostLoop(); // if close is done on running analysis,
49  // execute postloop before closing previous objects
50 
51  ana->CloseAnalysis();
52  cli->SendStatusMessage(1, kFALSE,TString::Format("Analysis %s was closed.",ana->GetName()));
53  } else {
54  cli->SendStatusMessage(3, kTRUE,TString::Format(" %s ERROR no analysis ",GetName()));
55  } // if(ana)
56 
57 
58  return -1;
59 }
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 void CloseAnalysis()
Bool_t MainIsRunning()
Definition: TGo4Slave.h:92
virtual const char * GetName() const
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