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

/Go4CommandsAnalysis/TGo4ComSetCondition.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 "TGo4ComSetCondition.h"
00017 
00018 #include "Go4Log/TGo4Log.h"
00019 #include "Go4AnalysisClient/TGo4AnalysisClientImp.h"
00020 #include "Go4Analysis/TGo4AnalysisImp.h"
00021 
00022 TGo4ComSetCondition::TGo4ComSetCondition(const char* obname)
00023 :TGo4AnalysisObjectCommand("ANSetCond","Set new values to an existing condition",obname),
00024 fxCondition(0)
00025 {
00026    TRACE((12,"TGo4ComSetCondition::TGo4ComSetCondition(const Text_t*) ctor",__LINE__, __FILE__));
00027    SetReceiverName("AnalysisClient");  // this command needs client as receiver
00028                                        // override default receiver
00029    SetProtection(kGo4ComModeController);
00030 }
00031 
00032 TGo4ComSetCondition::TGo4ComSetCondition()
00033 :TGo4AnalysisObjectCommand("ANSetCond","Set new values to an existing condition","mycondition"),
00034 fxCondition(0)
00035  {
00036    TRACE((12,"TGo4ComSetCondition::TGo4ComSetCondition() ctor",__LINE__, __FILE__));
00037    SetReceiverName("AnalysisClient");  // this command needs client as receiver
00038                                        // override default receiver
00039    SetProtection(kGo4ComModeController);
00040 }
00041 
00042 TGo4ComSetCondition::~TGo4ComSetCondition()
00043 {
00044    TRACE((12,"TGo4ComSetCondition::~TGo4ComSetCondition() dtor",__LINE__, __FILE__));
00045 
00046 }
00047 
00048 
00049 Int_t TGo4ComSetCondition::ExeCom()
00050 {
00051    TRACE((12,"TGo4ComSetCondition::ExeCom()",__LINE__, __FILE__));
00052 
00053 
00054 
00055    TGo4AnalysisClient* cli=dynamic_cast<TGo4AnalysisClient*> (fxReceiverBase);
00056    if (cli!=0)
00057       {
00058       TRACE((11,"TGo4ComSetCondition::ExeCom() - found valid receiver",__LINE__, __FILE__));
00059          if(fxCondition==0)
00060             {
00061                cli->SendStatusMessage(3, kTRUE,"SetCondition - ERROR:  no settings specified for  %s",
00062                                                 GetObjectName());
00063                return 0;
00064             } else {}
00065          SetObjectName(fxCondition->GetName());
00066          TGo4Log::Debug(" %s : Setting condition %s  ",
00067             GetName(), GetObjectName());
00068          TGo4Analysis* ana=TGo4Analysis::Instance();
00069          if(ana)
00070             {
00071                if(ana->SetAnalysisCondition(GetObjectName(),fxCondition, kFALSE))
00072                   {
00073                     cli->SendStatusMessage(1, kTRUE,"Condition %s was set to new values.",
00074                                                       GetObjectName());
00075                   }
00076                else
00077                   {
00078                      cli->SendStatusMessage(3, kTRUE,"SetCondition - ERROR: failed to set %s",
00079                                                       GetObjectName());
00080                   }
00081                if(fxCondition) delete fxCondition; // cleanup condition on analysis side only,
00082                                                    // gui might have external condition?
00083             } //    if(ana)
00084          else
00085             {
00086                 cli->SendStatusMessage(3, kTRUE," %s ERROR no analysis",
00087                                                  GetName());
00088             }
00089       }
00090 
00091    else
00092 
00093        {
00094       TRACE((11,"TGo4ComSetCondition::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
00095          TGo4Log::Debug(" !!! %s : NO RECEIVER ERROR!!!",GetName());
00096          return 1;
00097       }
00098 
00099    return -1;
00100 }
00101 
00102 ClassImp(TGo4ComSetCondition)
00103 
00104 
00105 
00106 //----------------------------END OF GO4 SOURCE FILE ---------------------

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