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 #include "TGo4AnalysisCommandList.h" 00017 00018 #include "TGo4ComInitAnalysis.h" 00019 00020 #include "TGo4AnalysisObjectCommand.h" 00021 #include "TGo4ComClearObject.h" 00022 #include "TGo4ComDeleteObject.h" 00023 #include "TGo4ComGetEnvelope.h" 00024 #include "TGo4ComSetProtections.h" 00025 #include "TGo4ComGetCurrentEvent.h" 00026 #include "TGo4ComSetPrintEvent.h" 00027 #include "TGo4ComSetObject.h" 00028 00029 #include "TGo4ComGetObjectStatus.h" 00030 #include "TGo4ComGetNamesList.h" 00031 #include "TGo4ComGetAnalysisStatus.h" 00032 #include "TGo4ComSetAnalysisStatus.h" 00033 #include "TGo4ComLoadAnalysisStatus.h" 00034 #include "TGo4ComSaveAnalysisStatus.h" 00035 00036 #include "TGo4ComAddTreeHistogram.h" 00037 00038 #include "TGo4ComPrintConditions.h" 00039 #include "TGo4ComPrintHistograms.h" 00040 #include "TGo4ComPrintDynList.h" 00041 #include "TGo4ComAutosave.h" 00042 00043 TGo4AnalysisCommandList::TGo4AnalysisCommandList() : 00044 TGo4TaskHandlerCommandList("Go4 Analysis Framework Command list") 00045 { 00046 // add all application specific commands here: 00047 00048 AddCommand (new TGo4ComInitAnalysis); 00049 00050 AddCommand (new TGo4ComGetAnalysisStatus); 00051 AddCommand (new TGo4ComSetAnalysisStatus); 00052 AddCommand (new TGo4ComLoadAnalysisStatus); 00053 AddCommand (new TGo4ComSaveAnalysisStatus); 00054 00055 AddCommand (new TGo4AnalysisObjectCommand); 00056 AddCommand (new TGo4ComClearObject); 00057 AddCommand (new TGo4ComDeleteObject); 00058 AddCommand (new TGo4ComGetEnvelope); 00059 AddCommand (new TGo4ComSetProtections); 00060 AddCommand (new TGo4ComGetCurrentEvent); 00061 AddCommand (new TGo4ComSetPrintEvent); 00062 00063 AddCommand (new TGo4ComSetObject); 00064 00065 AddCommand (new TGo4ComAddTreeHistogram); 00066 00067 AddCommand (new TGo4ComGetObjectStatus); 00068 AddCommand (new TGo4ComGetNamesList); 00069 00070 AddCommand (new TGo4ComPrintConditions); 00071 AddCommand (new TGo4ComPrintHistograms); 00072 AddCommand (new TGo4ComPrintDynList); 00073 AddCommand (new TGo4ComAutosave); 00074 } 00075 00076 TGo4AnalysisCommandList::~TGo4AnalysisCommandList() 00077 { 00078 } 00079 00080 //----------------------------END OF GO4 SOURCE FILE ---------------------