// $Id$ //----------------------------------------------------------------------- // The GSI Online Offline Object Oriented (Go4) Project // Experiment Data Processing at EE department, GSI //----------------------------------------------------------------------- // Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH // Planckstr. 1, 64291 Darmstadt, Germany // Contact: http://go4.gsi.de //----------------------------------------------------------------------- // This software can be used under the license agreements as stated // in Go4License.txt file which is part of the distribution. //----------------------------------------------------------------------- #ifndef TGO4COMSETPRINTEVENT_H #define TGO4COMSETPRINTEVENT_H #include "TGo4AnalysisObjectCommand.h" #include "TGo4MbsSource.h" /** Sets explicit printout for the next n events to come * Event is searched by object name in the EventObjects folder. * Currently, this feature is only supported for mbs events. * may be extended to all kinds of TGo4EventElements... * @author J. Adamczewski * @since 27-May-2004 */ class TGo4ComSetPrintEvent : public TGo4AnalysisObjectCommand { public: TGo4ComSetPrintEvent(); TGo4ComSetPrintEvent(const char *obname); Int_t ExeCom() override; /** Set internals of this command from specification of external * remote command (command container). Must be overloaded * for each specific command! */ void Set(TGo4RemoteCommand *remcon) override; void SetEventNum(Int_t i) { fxPrintPar.fiNum = i; } void SetSubId(Int_t i) { fxPrintPar.fiSid = i; } void SetLong(Bool_t on) { fxPrintPar.fiLong = on; } void SetHex(Bool_t on) { fxPrintPar.fiHex = on; } void SetData(Bool_t on) { fxPrintPar.fiData = on; } private: TGo4MbsSourcePrintPar fxPrintPar; ClassDefOverride(TGo4ComSetPrintEvent,1) }; #endif //TGO4COMSETPRINTEVENT_H