]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDInputHandler.h
modify systematic r-phi plotting
[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"
1aa09fd1 15class TChain;
16class TTree;
17class AliRunTag;
f0f29480 18class TMap;
620ad672 19class AliESDfriend;
67675e42 20class AliESDpid;
21
d3dd3d14 22
23class AliESDInputHandler : public AliInputEventHandler {
24
25 public:
26 AliESDInputHandler();
27 AliESDInputHandler(const char* name, const char* title);
28 virtual ~AliESDInputHandler();
300d5701 29 virtual Bool_t Init(Option_t* /*opt*/) {return kTRUE;}
30 virtual Bool_t Init(TTree* tree, Option_t* opt);
ed97dc98 31 virtual Bool_t BeginEvent(Long64_t entry);
1aa09fd1 32 virtual Bool_t Notify() { return AliVEventHandler::Notify(); };
33 virtual Bool_t Notify(const char* path);
6989bff3 34 virtual Bool_t FinishEvent();
aaf2d706 35 void CheckSelectionMask();
1aa09fd1 36 AliESDEvent *GetEvent() const {return fEvent;}
37 Option_t *GetAnalysisType() const {return fAnalysisType;}
c2b6979d 38 Option_t *GetDataType() const;
f0f29480 39 // Tag cut summary analysis
40 Int_t GetNEventAcceptedInFile();
41 Int_t GetNEventRejectedInFile();
c334d0d3 42 Bool_t GetCutSummaryForChain(Int_t *aTotal, Int_t *aAccepted, Int_t *aRejected);
43 Int_t GetNFilesEmpty();
67675e42 44 // HLT analysis
6ccd727b 45 AliESDEvent *GetHLTEvent() const {return fHLTEvent;}
46 TTree *GetHLTTree() const {return fHLTTree;}
47 void SetReadHLT() {fUseHLT = kTRUE;}
67675e42 48 // Friends&Co
49 AliESDfriend *GetESDfriend() const {return fFriend;}
50 AliESDpid *GetESDpid() const {return fESDpid;}
98c482f7 51 void SetESDpid(AliESDpid* pid) {fESDpid = pid;}
52 void SetReadFriends(Bool_t flag) {fReadFriends = flag;}
b626cd71 53 void SetFriendFileName(const char *fname) {fFriendFileName = fname;}
1aa09fd1 54 // Tag analysis
55 void SetReadTags() {fUseTags = kTRUE;}
56 AliRunTag *GetRunTag() const {return fRunTag;}
b890a10d 57 // Mixing
58 void SetMixingHandler(AliInputEventHandler* mixing)
59 {fMixingHandler = mixing;}
60 AliInputEventHandler* MixingHandler()
61 {return fMixingHandler;}
300d5701 62 private:
87d395bd 63 AliESDInputHandler(const AliESDInputHandler& handler);
64 AliESDInputHandler& operator=(const AliESDInputHandler& handler);
4d2a7370 65 protected:
1aa09fd1 66 // ESD event
b626cd71 67 AliESDEvent *fEvent; //! Pointer to the event
68 AliESDfriend *fFriend; //! Pointer to the esd friend
69 AliESDpid *fESDpid; //! Pointer to PID information
70 Option_t *fAnalysisType; //! local, proof, grid
71 Int_t fNEvents; //! Number of events in the current tree
6ccd727b 72 // HLT event
b626cd71 73 AliESDEvent *fHLTEvent; //! Pointer to the HLT Event (if present)
74 TTree *fHLTTree; //! Pointer to the HLT Event (if present)
75 Bool_t fUseHLT; // Flag to access HLT Events
f0f29480 76 // ESD Tag Cut Summary
b626cd71 77 TMap *fTagCutSumm; //! Tag cut summary map
1aa09fd1 78 // ESD Tags (optional)
b626cd71 79 Bool_t fUseTags; // Flag to use tags
80 TChain *fChainT; //! File with event tags
81 TTree *fTreeT; //! Tree of tags
82 AliRunTag *fRunTag; //! Pointer to the run tag
83 // Friends
84 Bool_t fReadFriends; // Flag for friends reading
85 TString fFriendFileName;// Name of the file containing the frien tree (branch)
b626cd71 86 ClassDef(AliESDInputHandler, 6);
d3dd3d14 87};
88
89#endif