GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4ComCloseAnalysis.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
15
16#include "TGo4Log.h"
17#include "TGo4AnalysisImp.h"
19
20TGo4ComCloseAnalysis::TGo4ComCloseAnalysis() : TGo4AnalysisCommand("ANClose", "closes analysis event classes")
21{
22 GO4TRACE((12, "TGo4ComCloseAnalysis::TGo4ComCloseAnalysis() ctor", __LINE__, __FILE__));
23 SetReceiverName("AnalysisClient"); // this command needs client as receiver
24 // override default receiver
26}
27
29{
30 GO4TRACE((12, "TGo4ComCloseAnalysis::ExeCom() dtor", __LINE__, __FILE__));
31
33 if (!cli) {
34 GO4TRACE((11, "TGo4ComCloseAnalysis::ExeCom() - no receiver specified ERROR!", __LINE__, __FILE__));
35 TGo4Log::Debug(" !!! ComCloseAnalysis ''%s'': NO RECEIVER ERROR!!!", GetName());
36 return 1;
37 }
38
39 GO4TRACE((11, "TGo4ComCloseAnalysis::ExeCom() - found valid receiver", __LINE__, __FILE__));
41 if (ana) {
42 if (cli->MainIsRunning())
43 ana->PostLoop(); // if close is done on running analysis,
44 // execute postloop before closing previous objects
45
46 ana->CloseAnalysis();
47 cli->SendStatusMessage(1, kFALSE, TString::Format("Analysis %s was closed.", ana->GetName()));
48 } else {
49 cli->SendStatusMessage(3, kTRUE, TString::Format(" %s ERROR no analysis ", GetName()));
50 } // if(ana)
51
52 return -1;
53}
@ kGo4ComModeController
Definition TGo4Command.h:30
#define GO4TRACE(X)
Definition TGo4Log.h:25
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
Send message to gui.
The mother of all go4 analysis.
static TGo4Analysis * Instance()
return analysis instance
virtual void CloseAnalysis()
Finish the analysis run and close all event sources/storages.
Int_t PostLoop()
Method executed once after the main analysis event loop.
const char * GetName() const override
Return analysis name.
Int_t ExeCom() override
Do the command action.
void SetProtection(Go4CommandMode_t m)
TGo4CommandReceiver * fxReceiverBase
void SetReceiverName(const char *)
static void Debug(const char *text,...) GO4_PRINTF_ARGS
User shortcut for message with prio 0.
Definition TGo4Log.cxx:281
Bool_t MainIsRunning() const
Definition TGo4Slave.h:98