Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

/Go4CommandsAnalysis/TGo4ComGetCanvas.cxx

Go to the documentation of this file.
00001 //---------------------------------------------------------------
00002 //        Go4 Release Package v2.10-5 (build 21005) 
00003 //                      03-Nov-2005
00004 //---------------------------------------------------------------
00005 //       The GSI Online Offline Object Oriented (Go4) Project
00006 //       Experiment Data Processing at DVEE department, GSI
00007 //---------------------------------------------------------------
00008 //
00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI
00010 //                    Planckstr. 1, 64291 Darmstadt, Germany
00011 //Contact:            http://go4.gsi.de
00012 //----------------------------------------------------------------
00013 //This software can be used under the license agreements as stated
00014 //in Go4License.txt file which is part of the distribution.
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");  // this command needs client as receiver
00030                                       // override default receiver
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");  // this command needs client as receiver
00039                                        // override default receiver
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); // canvas is owned by framework
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 //----------------------------END OF GO4 SOURCE FILE ---------------------

Generated on Tue Nov 8 10:55:50 2005 for Go4-v2.10-5 by doxygen1.2.15