]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDInputHandler.h
Link against libXMLParser.
[u/mrichter/AliRoot.git] / STEER / AliESDInputHandler.h
CommitLineData
d3dd3d14 1#ifndef ALIESDINPUTHANDLER_H
2#define ALIESDINPUTHANDLER_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// ESD Input Handler realisation of the AliVEventHandler interface
10// Author: Andreas Morsch, CERN
11//-------------------------------------------------------------------------
12
13#include "AliInputEventHandler.h"
fedd7a0d 14#include "AliESDEvent.h"
d3dd3d14 15
16class AliESDInputHandler : public AliInputEventHandler {
17
18 public:
19 AliESDInputHandler();
20 AliESDInputHandler(const char* name, const char* title);
21 virtual ~AliESDInputHandler();
22 virtual Bool_t InitIO(Option_t* opt);
ed97dc98 23 virtual Bool_t BeginEvent(Long64_t entry);
6989bff3 24 virtual Bool_t FinishEvent();
fedd7a0d 25 AliESDEvent *GetEvent() const {return fEvent;}
d3dd3d14 26 private:
fedd7a0d 27 AliESDEvent *fEvent; //! Pointer to the event
6989bff3 28 ClassDef(AliESDInputHandler, 2);
d3dd3d14 29};
30
31#endif