00001 // $Id: TGo4AnalysisCommandList.cxx 489 2009-11-04 12:20:26Z linev $ 00002 //----------------------------------------------------------------------- 00003 // The GSI Online Offline Object Oriented (Go4) Project 00004 // Experiment Data Processing at EE department, GSI 00005 //----------------------------------------------------------------------- 00006 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH 00007 // Planckstr. 1, 64291 Darmstadt, Germany 00008 // Contact: http://go4.gsi.de 00009 //----------------------------------------------------------------------- 00010 // This software can be used under the license agreements as stated 00011 // in Go4License.txt file which is part of the distribution. 00012 //----------------------------------------------------------------------- 00013 00014 #include "TGo4AnalysisCommandList.h" 00015 00016 #include "TGo4ComInitAnalysis.h" 00017 #include "TGo4ComCloseAnalysis.h" 00018 00019 #include "TGo4AnalysisObjectCommand.h" 00020 #include "TGo4ComClearObject.h" 00021 #include "TGo4ComDeleteObject.h" 00022 #include "TGo4ComGetEnvelope.h" 00023 #include "TGo4ComSetProtections.h" 00024 #include "TGo4ComGetCurrentEvent.h" 00025 #include "TGo4ComSetPrintEvent.h" 00026 #include "TGo4ComSetObject.h" 00027 00028 #include "TGo4ComGetObjectStatus.h" 00029 #include "TGo4ComGetNamesList.h" 00030 #include "TGo4ComGetAnalysisStatus.h" 00031 #include "TGo4ComSetAnalysisStatus.h" 00032 #include "TGo4ComLoadAnalysisStatus.h" 00033 #include "TGo4ComSaveAnalysisStatus.h" 00034 00035 #include "TGo4ComAddTreeHistogram.h" 00036 00037 #include "TGo4ComPrintConditions.h" 00038 #include "TGo4ComPrintHistograms.h" 00039 #include "TGo4ComPrintDynList.h" 00040 #include "TGo4ComAutosave.h" 00041 00042 TGo4AnalysisCommandList::TGo4AnalysisCommandList() : 00043 TGo4TaskHandlerCommandList("Go4 Analysis Framework Command list") 00044 { 00045 // add all application specific commands here: 00046 00047 AddCommand (new TGo4ComInitAnalysis); 00048 AddCommand (new TGo4ComCloseAnalysis); 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 }