// $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 TMESHB1INPUTEVENT_H #define TMESHB1INPUTEVENT_H #include "TGo4EventElement.h" class TMeshUnpackProc; class TGo4FileSource; class TMeshB1InputEvent : public TGo4EventElement { public: TMeshB1InputEvent(); TMeshB1InputEvent(const char *name); virtual ~TMeshB1InputEvent(); /** * Method called by the event owner (analysis step) to fill the * event element from the set event source. Event source can * be the source of the analysis step (if this is a raw event) * or the event processor (if this is a reduced event). */ Int_t Fill() override; /** * Method called by the event owner (analysis step) to clear the * event element. */ void Clear(Option_t *opt = "") override; Int_t Init() override; Int_t fiCrate1[16]; private: TMeshUnpackProc *fxProcessor{nullptr}; //! Don't put this to file TGo4FileSource *fxFile{nullptr}; //! Don't put this to file ClassDefOverride(TMeshB1InputEvent,1) }; #endif //TMESHB1INPUTEVENT_H