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 TGO4COMGETCURRENTEVENT_H 00017 #define TGO4COMGETCURRENTEVENT_H 00018 00019 #include "Go4CommandsAnalysis/TGo4AnalysisObjectCommand.h" 00020 00033 class TGo4ComGetCurrentEvent : public TGo4AnalysisObjectCommand { 00034 public: 00035 00036 TGo4ComGetCurrentEvent(); 00037 00038 TGo4ComGetCurrentEvent(const char* obname); 00039 00040 virtual ~TGo4ComGetCurrentEvent(); 00041 00042 Int_t ExeCom(); 00043 00044 Bool_t IsOutputEvent() const { return fbOutputEvent; } 00045 00046 void SetOutputEvent(Bool_t output=kTRUE) { fbOutputEvent=output; } 00047 00048 Bool_t IsPrintoutOnly() const { return fbPrintoutOnly; } 00049 00050 void SetPrintoutOnly(Bool_t on=kTRUE) { fbPrintoutOnly=on; } 00051 00052 Bool_t IsTreeMode() const { return fbTreeMode; } 00053 00054 void SetTreeMode(Bool_t on=kTRUE) { fbTreeMode=on; } 00055 00056 private: 00057 /* we use integer for bool expressions due to root streamer problems */ 00058 00060 Bool_t fbOutputEvent; 00061 00063 Bool_t fbPrintoutOnly; 00064 00067 Bool_t fbTreeMode; 00068 00069 ClassDef(TGo4ComGetCurrentEvent,1) 00070 }; 00071 00072 00073 #endif //TGO4COMGETCURRENTEVENT_H 00074 00075 00076 00077 00078 //----------------------------END OF GO4 SOURCE FILE ---------------------