]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDInputHandlerRP.h
changed the names of the histograms, requested by AMORE
[u/mrichter/AliRoot.git] / STEER / AliESDInputHandlerRP.h
CommitLineData
a847da94 1#ifndef ALIESDINPUTHANDLERRP_H
2#define ALIESDINPUTHANDLERRP_H
3/* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliESDInputHandler.h 24521 2008-03-14 16:43:54Z morsch $ */
7
8//-------------------------------------------------------------------------
9// ESD Input Handler realisation of the AliVEventHandler interface
10// Automatic loading of RecPoint Trees
11// Author: Andreas Morsch, CERN
12//-------------------------------------------------------------------------
13
14#include "AliESDInputHandler.h"
15#include "AliESDEvent.h"
16class TList;
17class TTree;
18class TDirectoryFile;
19class TString;
20
21
22class AliESDInputHandlerRP : public AliESDInputHandler {
23
24 public:
25 AliESDInputHandlerRP();
26 AliESDInputHandlerRP(const char* name, const char* title);
27 virtual ~AliESDInputHandlerRP();
28 virtual Bool_t Init(Option_t* opt);
f207215d 29 virtual Bool_t Init(TTree* tree, Option_t* opt) {return AliESDInputHandler::Init(tree, opt);}
a847da94 30 virtual Bool_t InitIO(Option_t* opt) {return Init(opt);};
31 virtual Bool_t BeginEvent(Long64_t entry);
32 virtual Bool_t FinishEvent();
f207215d 33 virtual Bool_t LoadEvent(Int_t iev);
34 virtual Bool_t Notify() {return kTRUE;}
a847da94 35 virtual Bool_t Notify(const char* path);
36 virtual void ResetIO();
ad61d1be 37 //
38 virtual TTree* GetTreeR(char* det);
a847da94 39 private:
40 Bool_t OpenFile(Int_t i);
41 AliESDInputHandlerRP(const AliESDInputHandlerRP& handler);
42 AliESDInputHandlerRP& operator=(const AliESDInputHandlerRP& handler);
43 private:
30cd6a86 44 TObjArray* fRTrees; // List of RecPoint Trees
a847da94 45 TList* fRFiles; // List of RecPoint Files
80d90f25 46 TList* fDetectors; // List of detector names
47 TDirectoryFile *fDirR; //! Directory for RP Tree
a847da94 48 Int_t fEventNumber; //! Current event number
a847da94 49 Int_t fFileNumber; //! Input file number
50 Int_t fEventsPerFile; //! Number of events per file
a6e0ebfe 51 const Char_t *fExtension; //! File name extension
80d90f25 52 TString *fPathName; //! Input file path
53 Bool_t fIsArchive; //! True if directory is an archive
a847da94 54 ClassDef(AliESDInputHandlerRP, 1);
55};
56
57#endif