]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDInputHandler.h
Misalignment according survey data
[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);
23 virtual Bool_t BeginEvent();
fedd7a0d 24 AliESDEvent *GetEvent() const {return fEvent;}
d3dd3d14 25 private:
fedd7a0d 26 AliESDEvent *fEvent; //! Pointer to the event
d3dd3d14 27 ClassDef(AliESDInputHandler, 1);
28};
29
30#endif