X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;ds=sidebyside;f=ANALYSIS%2FAliMultiEventInputHandler.h;h=50add9ef86e71e49d1f5f947ff08a80826778519;hb=a6889bf1ecfd1414eaf6212c5c4e3ed54e04efa8;hp=ac8d491f0d1539e470546a08c451ae922b40515a;hpb=67b28e0a9e3a3c3bf70d548d64104cf9c14e588d;p=u%2Fmrichter%2FAliRoot.git diff --git a/ANALYSIS/AliMultiEventInputHandler.h b/ANALYSIS/AliMultiEventInputHandler.h index ac8d491f0d1..50add9ef86e 100644 --- a/ANALYSIS/AliMultiEventInputHandler.h +++ b/ANALYSIS/AliMultiEventInputHandler.h @@ -33,6 +33,7 @@ class AliMultiEventInputHandler : public AliInputEventHandler { virtual AliVEvent *GetEvent(Int_t iev) const; AliVEvent *GetLatestEvent() const {return fEventBuffer[fIndex];} Int_t GetFormat() { return fFormat ;} + void EventSkipped() {fEventSkipped = kTRUE;} // From the interface virtual Bool_t Init(Option_t* /*opt*/) {return kTRUE;} virtual Bool_t Init(TTree* tree, Option_t* /*opt*/); @@ -49,8 +50,11 @@ class AliMultiEventInputHandler : public AliInputEventHandler { Int_t fNBuffered; // Number of events actually buffered Int_t fIndex; // Pointer to most recent event Int_t fCurrentBin; // Current bin from the pool + Int_t fCurrentEvt; // Current event + Bool_t fInit; // Current event AliVEventPool* fEventPool; // Pointer to the pool AliVEvent** fEventBuffer; //! The event buffer + Bool_t fEventSkipped; // User requires event to be skip ClassDef(AliMultiEventInputHandler, 1); };