]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliAODInputHandler.h
Pass event number as argument of AliVEventHandler::BeginEvent
[u/mrichter/AliRoot.git] / STEER / AliAODInputHandler.h
CommitLineData
397596ed 1#ifndef ALIAODINPUTHANDLER_H
2#define ALIAODINPUTHANDLER_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// AOD Input Handler realisation of the AliVEventHandler interface
10// Author: Andreas Morsch, CERN
11//-------------------------------------------------------------------------
12
13#include "AliInputEventHandler.h"
fedd7a0d 14#include "AliAODEvent.h"
397596ed 15
16class AliAODInputHandler : public AliInputEventHandler {
17
18 public:
19 AliAODInputHandler();
20 AliAODInputHandler(const char* name, const char* title);
21 virtual ~AliAODInputHandler();
22 virtual Bool_t InitIO(Option_t* opt);
fedd7a0d 23 AliAODEvent *GetEvent() const {return fEvent;}
24 private:
25 AliAODEvent *fEvent; //! Pointer to the event
397596ed 26 ClassDef(AliAODInputHandler, 1);
27};
28
29#endif