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 #ifndef TGO4CONDITIONINFOSLOTS_H 00017 #define TGO4CONDITIONINFOSLOTS_H 00018 00019 #include "Go4GUIBase/TGo4SlotsBaseClass.h" 00020 #include "TString.h" 00021 00022 class TGo4ConditionInfo; 00023 class TGo4Status; 00024 class TGo4GUIRegistry; 00025 class TGo4ConditionInfoStatus; 00026 00032 class TGo4ConditionInfoSlots : public TGo4SlotsBaseClass { 00033 00034 public: 00035 00036 TGo4ConditionInfoSlots(const char * name, 00037 const char * title, 00038 TGo4ConditionInfo* p=0); 00039 virtual ~TGo4ConditionInfoSlots(); 00040 void StatusChanged(TGo4Status *status); 00041 void SetGUI(TGo4ConditionInfo* e ); 00042 void AddObject(TNamed *object); 00043 TGo4Status * GetStatus(); 00044 00047 void SendConditionInfoCommand(); 00048 00051 void SendConditionPrintCommand(); 00052 00055 void SendConditionEditCommand(); 00056 00057 void SetConditionClass(const char* cname) { fxConditionClass=cname; } 00058 00059 private: 00061 TGo4GUIRegistry *fxTGo4GUIRegistry; 00062 TGo4ConditionInfo *fxTGo4ConditionInfo; 00063 TGo4ConditionInfoStatus *fxTGo4ConditionInfoStatus; 00064 00067 Int_t fiCondArrayType; 00069 TString fxConditionClass; 00070 }; 00071 00072 #endif //TGO4ConditionInfoSLOTS_H 00073 00074 //----------------------------END OF GO4 SOURCE FILE ---------------------