00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4ComGetCondition.h"
00017
00018 #include "Go4Log/TGo4Log.h"
00019 #include "Go4ConditionsBase/TGo4Condition.h"
00020 #include "Go4AnalysisClient/TGo4AnalysisClientImp.h"
00021 #include "Go4Analysis/TGo4AnalysisImp.h"
00022
00023 TGo4ComGetCondition::TGo4ComGetCondition(const char* obname)
00024 :TGo4AnalysisObjectCommand("ANGetCond","Get a condition from analysis",obname)
00025 {
00026 TRACE((12,"TGo4ComGetCondition::TGo4ComGetCondition(const Text_t*) ctor",__LINE__, __FILE__));
00027 SetReceiverName("AnalysisClient");
00028
00029 }
00030
00031 TGo4ComGetCondition::TGo4ComGetCondition()
00032 :TGo4AnalysisObjectCommand("ANGetCond","Get a condition from analysis","his")
00033 {
00034 TRACE((12,"TGo4ComGetCondition::TGo4ComGetCondition() ctor",__LINE__, __FILE__));
00035
00036 SetReceiverName("AnalysisClient");
00037
00038 }
00039
00040 TGo4ComGetCondition::~TGo4ComGetCondition()
00041 {
00042 TRACE((12,"TGo4ComGetCondition::~TGo4ComGetCondition() dtor",__LINE__, __FILE__));
00043 }
00044
00045 Int_t TGo4ComGetCondition::ExeCom()
00046 {
00047 TRACE((12,"TGo4ComGetCondition::ExeCom()",__LINE__, __FILE__));
00048
00049 if (fxReceiverBase!=0)
00050 {
00051 TRACE((11,"TGo4ComGetCondition::ExeCom() - found valid receiver",__LINE__, __FILE__));
00052 TGo4Log::Debug(" Executing %s : Condition %s requested ",
00053 GetName(), GetObjectName());
00054 TGo4AnalysisClient* cli=dynamic_cast<TGo4AnalysisClient*> (fxReceiverBase);
00055 TGo4Analysis* ana=TGo4Analysis::Instance();
00056 TGo4Condition* cond= ana->GetAnalysisCondition(GetObjectName());
00057 if(cond)
00058 {
00059 cli->SendObject(cond, GetTaskName());
00060 }
00061 else
00062 {
00063 cli->SendStatusMessage(3, kTRUE,"GetCondition - ERROR: no such condition %s",
00064 GetObjectName());
00065 }
00066
00067 }
00068
00069 else
00070
00071 {
00072 TRACE((11,"TGo4ComGetObject::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
00073 TGo4Log::Debug(" !!! %s : NO RECEIVER ERROR!!!",GetName());
00074 return 1;
00075 }
00076
00077 return -1;
00078 }
00079
00080 ClassImp(TGo4ComGetCondition)
00081
00082