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

/Go4CommandsAnalysis/TGo4ComInitAnalysis.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 "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");  // this command needs client as receiver
00028                                        // override default receiver
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(); // re-init userpointers when init was done on the fly 
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 //----------------------------END OF GO4 SOURCE FILE ---------------------

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