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

/Go4CommandsAnalysis/TGo4ComGetTreeStructure.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 "TGo4ComGetTreeStructure.h"
00017 
00018 #include "Go4Log/TGo4Log.h"
00019 #include "Go4AnalysisClient/TGo4AnalysisClientImp.h"
00020 #include "Go4StatusAnalysis/TGo4TreeStructure.h"
00021 #include "Go4Analysis/TGo4AnalysisImp.h"
00022 
00023 TGo4ComGetTreeStructure::TGo4ComGetTreeStructure(const char* obname)
00024 :TGo4AnalysisObjectCommand("ANGetTree","Get structure of a tree from analysis",obname)
00025 {
00026    TRACE((12,"TGo4ComGetTreeStructure::TGo4ComGetTreeStructure(const Text_t*) ctor",__LINE__, __FILE__));
00027    SetReceiverName("AnalysisClient");  // this command needs client as receiver
00028                                        // override default receiver
00029 }
00030 
00031 TGo4ComGetTreeStructure::TGo4ComGetTreeStructure()
00032 :TGo4AnalysisObjectCommand("ANGetTree","Get structure of a tree from analysis","his")
00033  {
00034    TRACE((12,"TGo4ComGetTreeStructure::TGo4ComGetTreeStructure() ctor",__LINE__, __FILE__));
00035 
00036    SetReceiverName("AnalysisClient");  // this command needs client as receiver
00037                                        // override default receiver
00038 }
00039 
00040 TGo4ComGetTreeStructure::~TGo4ComGetTreeStructure()
00041 {
00042    TRACE((12,"TGo4ComGetTreeStructure::~TGo4ComGetTreeStructure() dtor",__LINE__, __FILE__));
00043 }
00044 
00045 
00046 
00047 
00048 Int_t TGo4ComGetTreeStructure::ExeCom()
00049 {
00050    TRACE((12,"TGo4ComGetTreeStructure::ExeCom()",__LINE__, __FILE__));
00051 
00052    if (fxReceiverBase!=0)
00053       {
00054       TRACE((11,"TGo4ComGetTreeStructure::ExeCom() - found valid receiver",__LINE__, __FILE__));
00055          TGo4Log::Debug(" Executing %s : Tree %s Structure requested ",
00056             GetName(), GetObjectName());
00057          TGo4AnalysisClient* cli=dynamic_cast<TGo4AnalysisClient*> (fxReceiverBase);
00058          TGo4Analysis* ana=TGo4Analysis::Instance();
00059          TGo4TreeStructure* state= ana->CreateTreeStructure(GetObjectName());
00060          if(state)
00061             {
00062                //cli->SendStatus(state);
00063                cli->SendObject(state, GetTaskName());
00064             }
00065          else
00066             {
00067                cli->SendStatusMessage(3,kTRUE,"GetTreeStructure - ERROR:  no such tree %s",
00068                                        GetObjectName());
00069             }
00070 
00071       }
00072 
00073    else
00074 
00075        {
00076       TRACE((11,"TGo4ComGetObject::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
00077          TGo4Log::Debug(" !!! %s : NO RECEIVER ERROR!!!",GetName());
00078          return 1;
00079       }
00080 
00081    return -1;
00082 }
00083 
00084 
00085 ClassImp(TGo4ComGetTreeStructure)
00086 
00087 
00088 
00089 
00090 //----------------------------END OF GO4 SOURCE FILE ---------------------

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