]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDInputHandler.h
New functionality added in AliCDBManager: the activated default and specific
[u/mrichter/AliRoot.git] / STEER / AliESDInputHandler.h
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"
14 #include "AliESDEvent.h"
15
16 class 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);
23     virtual Bool_t       BeginEvent();
24     AliESDEvent         *GetEvent() const {return fEvent;}
25     private:
26     AliESDEvent    *fEvent;   //! Pointer to the event 
27     ClassDef(AliESDInputHandler, 1);
28 };
29
30 #endif