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 TGO4ANALYSISCONFIGURATIONSTATUS_H 00017 #define TGO4ANALYSISCONFIGURATIONSTATUS_H 00018 00019 #include "Go4StatusBase/TGo4Status.h" 00020 #include "TString.h" 00021 00022 class TGo4AnalysisStatus; 00023 00029 class TGo4AnalysisConfigurationStatus : public TGo4Status { 00030 00031 public: 00032 00033 virtual ~TGo4AnalysisConfigurationStatus(); 00034 00035 TGo4AnalysisConfigurationStatus(const char* Name, const char* Title); 00036 00037 TGo4AnalysisStatus *GetAnaylsisStatus(); 00038 00039 void SetAnaylsisStatus(TGo4AnalysisStatus *Status); 00040 00041 void DeleteAnaylsisStatus(); 00042 00043 const char* GetSourcePath() const { return fxEventSourcePath.Data(); } 00044 const char* GetStorePath() const { return fxEventStorePath.Data(); } 00045 const char* GetAutoSavePath() const { return fxAutoSavePath.Data(); } 00046 const char* GetConfigPath() const { return fxConfigPath.Data(); } 00047 00048 void SetSourcePath(const char* path=".") { fxEventSourcePath=path; } 00049 void SetStorePath(const char* path=".") { fxEventStorePath=path; } 00050 void SetAutoSavePath(const char* path=".") { fxAutoSavePath=path; } 00051 void SetConfigPath(const char* path=".") { fxConfigPath=path; } 00052 00053 protected: 00054 00055 TGo4AnalysisStatus *fxTGo4AnalysisStatus; 00056 00058 TString fxEventSourcePath; 00059 00061 TString fxEventStorePath; 00062 00064 TString fxAutoSavePath; 00065 00067 TString fxConfigPath; 00068 }; 00069 00070 #endif //TGO4ANALYSISCONFIGURATIONSTATUS_H 00071 00072 //----------------------------END OF GO4 SOURCE FILE ---------------------