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