]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/AliMultiEventInputHandler.h
Possibility to apply filtermask (bitwise AND) to the previous decisions.
[u/mrichter/AliRoot.git] / ANALYSIS / AliMultiEventInputHandler.h
CommitLineData
fab17817 1#ifndef ALIMULTIEVENTINPUTHANDLER_H
2#define ALIMULTIEVENTINPUTHANDLER_H
3/* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//----------------------------------------------------------------------------
9// Multi VEvent Input Handler realisation of the AliVEventHandler interface.
10// This class handles multiple events for mixing.
11// Author: Andreas Morsch, CERN
12//----------------------------------------------------------------------------
13
14#include "AliInputEventHandler.h"
15class AliVEventPool;
16class AliVEvent;
17
18class AliMultiEventInputHandler : public AliInputEventHandler {
19
20 public:
21 AliMultiEventInputHandler();
22 AliMultiEventInputHandler(Int_t size, Int_t format = 1);
23 AliMultiEventInputHandler(const char* name, const char* title, Int_t size, Int_t format = 1);
24 virtual ~AliMultiEventInputHandler();
25 void SetBufferSize(Int_t size) {fBufferSize = size;}
26 void SetEventPool(AliVEventPool* pool) {fEventPool = pool;}
27 Int_t GetBufferSize() const {return fBufferSize;}
28 Int_t GetNBuffered() const {return fNBuffered;}
29 Bool_t IsBufferReady() const {return (fNBuffered >= (fBufferSize -1));}
30 Bool_t IsFreshBuffer() const {return (fIndex == (fBufferSize - 1));}
31 AliVEventPool *GetEventPool() const {return fEventPool;}
44e301c6 32 virtual AliVEvent *GetEvent() const {return GetLatestEvent();}
fab17817 33 virtual AliVEvent *GetEvent(Int_t iev) const;
34 AliVEvent *GetLatestEvent() const {return fEventBuffer[fIndex];}
35 // From the interface
36 virtual Bool_t Init(Option_t* /*opt*/) {return kTRUE;}
37 virtual Bool_t Init(TTree* tree, Option_t* /*opt*/);
38 virtual Bool_t FinishEvent();
39 virtual Bool_t BeginEvent(Long64_t /*entry*/);
40
41 private:
42 AliMultiEventInputHandler(const AliMultiEventInputHandler& handler);
43 AliMultiEventInputHandler& operator=(const AliMultiEventInputHandler& handler);
44 private:
45 Int_t fBufferSize; // Size of the buffer
46 Int_t fFormat; // 0: ESD 1: AOD
47 Int_t fNBuffered; // Number of events actually buffered
48 Int_t fIndex; // Pointer to most recent event
49 Int_t fCurrentBin; // Current bin from the pool
50 TTree* fTree; // Pointer to the tree
51 AliVEventPool* fEventPool; // Pointer to the pool
52 AliVEvent** fEventBuffer; // The event buffer
53 ClassDef(AliMultiEventInputHandler, 1);
54};
55
56#endif