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 "TGo4AnalysisCommandList.h" 00017 00018 #include "Go4CommandsAnalysis/Go4CommandsAnalysis.h" 00019 00020 TGo4AnalysisCommandList::TGo4AnalysisCommandList() 00021 :TGo4TaskHandlerCommandList("Go4 Analysis Framework Command list") 00022 { 00023 // add all application specific commands here: 00024 00025 AddCommand (new TGo4ComCloseAnalysis); 00026 AddCommand (new TGo4ComInitAnalysis); 00027 AddCommand (new TGo4ComRemoveDynamicEntry); 00028 00029 AddCommand (new TGo4ComGetAnalysisStatus); 00030 AddCommand (new TGo4ComSetAnalysisStatus); 00031 AddCommand (new TGo4ComLoadAnalysisStatus); 00032 AddCommand (new TGo4ComSaveAnalysisStatus); 00033 00034 AddCommand (new TGo4AnalysisObjectCommand); 00035 AddCommand (new TGo4ComClearObject); 00036 AddCommand (new TGo4ComCopyObject); 00037 AddCommand (new TGo4ComDeleteObject); 00038 AddCommand (new TGo4ComGetEnvelope); 00039 AddCommand (new TGo4ComGetObject); 00040 AddCommand (new TGo4ComSetProtections); 00041 AddCommand (new TGo4ComGetCurrentEvent); 00042 AddCommand (new TGo4ComGetCondition); 00043 AddCommand (new TGo4ComSetCondition); 00044 AddCommand (new TGo4ComGetParameter); 00045 AddCommand (new TGo4ComSetParameter); 00046 AddCommand (new TGo4ComGetPicture); 00047 AddCommand (new TGo4ComSetPicture); 00048 AddCommand (new TGo4ComGetCanvas); 00049 AddCommand (new TGo4ComSetCanvas); 00050 00051 00052 00053 AddCommand (new TGo4ComCreateObject); 00054 AddCommand (new TGo4ComCreateCondition); 00055 AddCommand (new TGo4ComCreateHistogram); 00056 AddCommand (new TGo4ComAddTreeHistogram); 00057 00058 00059 AddCommand (new TGo4ComGetObjectStatus); 00060 AddCommand (new TGo4ComGetNamesList); 00061 AddCommand (new TGo4ComGetTreeStructure); 00062 00063 AddCommand (new TGo4AnalysisStepCommand); 00064 AddCommand (new TGo4ComSetSource); 00065 AddCommand (new TGo4ComSetStore); 00066 AddCommand (new TGo4ComSetProcessor); 00067 AddCommand (new TGo4ComSetFirstStep); 00068 AddCommand (new TGo4ComSetLastStep); 00069 AddCommand (new TGo4ComPrintConditions); 00070 AddCommand (new TGo4ComPrintHistograms); 00071 AddCommand (new TGo4ComPrintDynList); 00072 AddCommand (new TGo4ComStartHistoServ); 00073 AddCommand (new TGo4ComStopHistoServ); 00074 AddCommand (new TGo4ComAutosave); 00075 } 00076 00077 TGo4AnalysisCommandList::~TGo4AnalysisCommandList() 00078 { 00079 } 00080 00081 ClassImp(TGo4AnalysisCommandList) 00082 00083 //----------------------------END OF GO4 SOURCE FILE ---------------------