00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE 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 TUNPACKFACTORY_H 00017 #define TUNPACKFACTORY_H 00018 00019 #include "TGo4EventServerFactory.h" 00020 00021 class TGo4StepFactory : public TGo4EventServerFactory { 00022 public: 00023 TGo4StepFactory(); 00024 TGo4StepFactory(const char* name); 00025 virtual ~TGo4StepFactory(); 00026 virtual TGo4EventElement* CreateInputEvent(); 00027 virtual TGo4EventElement* CreateOutputEvent(); 00028 virtual TGo4EventProcessor* CreateEventProcessor(TGo4EventProcessorParameter* par); 00029 void DefEventProcessor(const char* Pname, const char* Pclass); 00030 void DefInputEvent(const char* Iname, const char* Iclass); 00031 void DefOutputEvent(const char* Oname, const char* Oclass); 00032 private: 00033 TString fnewProcessor; 00034 TString fProcessorName; 00035 // TString fProcessorClass; 00036 TString fnewOutputEvent; 00037 TString fOutputEventName; 00038 // TString fOutputEventClass; 00039 TString fnewInputEvent; 00040 TString fInputEventName; 00041 // TString fInputEventClass; 00042 00043 ClassDef(TGo4StepFactory,1) 00044 }; 00045 00046 #endif //TUNPACKFACTORY_H 00047 00048 //----------------------------END OF GO4 SOURCE FILE ---------------------