]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliJetAODReader.h
Added protection for the case that the list of input particles is empty
[u/mrichter/AliRoot.git] / JETAN / AliJetAODReader.h
CommitLineData
586f2bc3 1#ifndef ALIJETAODREADER_H
2#define ALIJETAODREADER_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7//---------------------------------------------------------------------
8// Jet AOD Reader
9// AOD reader for jet analysis
10// Author: Davide Perrino (davide.perrino@cern.ch)
11//---------------------------------------------------------------------
12
13#include "AliJetReader.h"
be6e5811 14#include "AliJetUnitArray.h"
15#include "AliJetGrid.h"
16class AliJetUnitArray;
17class AliJetDummyGeo;
18class AliJetHadronCorrection;
586f2bc3 19class AliJetAODReaderHeader;
20class AliJetReaderHeader;
21class AliAODEvent;
22class TRefArray;
23
24class AliJetAODReader : public AliJetReader
25{
26 public:
27 AliJetAODReader();
28 virtual ~AliJetAODReader();
29
30 TRefArray* GetReferences() const {return fRef;}
31
9e4cc50d 32 Bool_t FillMomentumArray();
586f2bc3 33 void OpenInputFiles();
34 void ConnectTree(TTree* tree, TObject* data);
be6e5811 35 void InitUnitArray();
36 void CreateTasks(TChain* tree);
37 Bool_t ExecTasks(Bool_t procid, TRefArray* refArray);
38
f5c22dad 39 void SetInputEvent(const TObject* /*esd*/, const TObject* aod, const TObject* /*mc*/) {fAOD = (AliAODEvent*) aod;}
be6e5811 40 void SetTPCGrid(AliJetGrid *grid) {fTpcGrid = grid;}
41 void SetEMCalGrid(AliJetGrid *grid) {fEmcalGrid = grid;}
42 // Correction of hadronic energy
f5c22dad 43 void SetHadronCorrection(const Int_t flag = 1) {fHCorrection = flag;}
be6e5811 44 void SetHadronCorrector(AliJetHadronCorrection* corr) {fHadCorr = corr;}
f5c22dad 45 void SetApplyElectronCorrection(const Int_t flag = 1) {fECorrection = flag; fEFlag=kTRUE;}
46 void SetApplyMIPCorrection(const Bool_t val);
be6e5811 47 void SetApplyFractionHadronicCorrection(Bool_t val);
48 void SetFractionHadronicCorrection(Double_t val);
49
50
9e4cc50d 51 private:
be6e5811 52 Bool_t SetEMCALGeometry();
53 void InitParameters();
9e4cc50d 54 AliJetAODReader(const AliJetAODReader &det);
55 AliJetAODReader &operator=(const AliJetAODReader &det);
586f2bc3 56
57 private:
586f2bc3 58 AliAODEvent *fAOD; //! pointer to aod
bcec7a80 59 TRefArray *fRef; //! pointer to array of references to tracks
586f2bc3 60 Int_t fDebug; // Debug option
61 Int_t fOpt; // Detector to be used for jet reconstruction
be6e5811 62 AliJetDummyGeo *fGeom; //! EMCAL Geometry
63
64 AliJetHadronCorrection *fHadCorr; //! Pointer to Hadron Correction Object
65 AliJetGrid *fTpcGrid; //! Pointer to grid object
66 AliJetGrid *fEmcalGrid; //! Pointer to grid object
67 AliJetGrid *fGrid0; // Pointer to grid object
68 AliJetGrid *fGrid1; // Pointer to grid object
69 AliJetGrid *fGrid2; // Pointer to grid object
70 AliJetGrid *fGrid3; // Pointer to grid object
71 AliJetGrid *fGrid4; // Pointer to grid object
72 Float_t fPtCut; // Pt cut for tracks to minimise background contribution
be6e5811 73 Int_t fApplyElectronCorrection; // Electron correction flag
be6e5811 74 Bool_t fApplyMIPCorrection; // Apply MIP or not ? Exclusive with fApplyFractionHadronicCorrection
75 Bool_t fApplyFractionHadronicCorrection; // Another type of charged particle energy deposition in EMC
76 Double_t fFractionHadronicCorrection; // Fraction of momentum of the TPC track to be subtracted from EMC tower
77 Int_t fNumUnits; // Number of units in the unit object array
78 // (same as num towers in EMCAL)
79 Float_t fMass; // Particle mass
80 Int_t fSign; // Particle sign
81 Int_t fNIn; // Number of Array filled in UnitArray
82 Bool_t fDZ; // Use or not dead zones
83 Int_t fNeta; // Number of bins in eta of tpc grid
84 Int_t fNphi; // Number of bins in phi of tpc grid
be6e5811 85 TRefArray *fRefArray; // array of digit position and energy
86 Bool_t fProcId; // Bool_t for TProcessID synchronization
586f2bc3 87 ClassDef(AliJetAODReader,1)
88};
89
90#endif