00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4ComInitAnalysis.h"
00017
00018 #include "Go4Log/TGo4Log.h"
00019 #include "Go4ThreadManager/TGo4Thread.h"
00020 #include "Go4Analysis/TGo4AnalysisImp.h"
00021 #include "Go4AnalysisClient/TGo4AnalysisClientImp.h"
00022
00023 TGo4ComInitAnalysis::TGo4ComInitAnalysis()
00024 :TGo4AnalysisCommand("ANInit","executes InitEventClasses of Analysis")
00025 {
00026 TRACE((12,"TGo4ComInitAnalysis::TGo4ComInitAnalysis() ctor",__LINE__, __FILE__));
00027 SetReceiverName("AnalysisClient");
00028
00029 SetProtection(kGo4ComModeController);
00030 }
00031
00032 TGo4ComInitAnalysis::~TGo4ComInitAnalysis()
00033 {
00034 TRACE((12,"TGo4ComInitAnalysis::~TGo4ComInitAnalysis() dtor",__LINE__, __FILE__));
00035 }
00036
00037 Int_t TGo4ComInitAnalysis::ExeCom()
00038 {
00039 TRACE((12,"TGo4ComInitAnalysis::ExeCom()",__LINE__, __FILE__));
00040
00041 TGo4AnalysisClient* cli=dynamic_cast<TGo4AnalysisClient*> (fxReceiverBase);
00042 if (cli!=0)
00043 {
00044 TRACE((11,"TGo4ComInitAnalysis::ExeCom() - found valid receiver",__LINE__, __FILE__));
00045 TGo4Analysis* ana= TGo4Analysis::Instance();
00046 if(ana)
00047 {
00048 cli->SendStatusMessage(2, kTRUE,"INITIALISING submitted settings, PLEASE WAIT...");
00049 TGo4Thread::Sleep(1000);
00050 if(ana->InitEventClasses())
00051 {
00052 cli->SendStatusMessage(1, kTRUE,"Analysis %s event classes were initialized.",
00053 ana->GetName());
00054 if(cli->MainIsRunning())
00055 ana->PreLoop();
00056 }
00057 else
00058 {
00059 cli->SendStatusMessage(3, kTRUE,"Analysis %s initialization failed !!! ",
00060 ana->GetName());
00061 }
00062 }
00063 else
00064 {
00065 cli->SendStatusMessage(3, kTRUE," %s ERROR no analysis",
00066 GetName());
00067 }
00068 }
00069 else
00070 {
00071 TRACE((11,"TGo4ComInitAnalysis::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
00072 TGo4Log::Debug(" !!! ComInitAnalysis ''%s'': NO RECEIVER ERROR!!!",GetName());
00073 return 1;
00074 }
00075
00076 return -1;
00077 }
00078
00079 ClassImp(TGo4ComInitAnalysis)
00080
00081