]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGGA/CaloTrackCorrelations/AliAnaChargedParticles.h
correcting cone exess
[u/mrichter/AliRoot.git] / PWGGA / CaloTrackCorrelations / AliAnaChargedParticles.h
CommitLineData
477d6cee 1#ifndef ALIANACHARGEDPARTICLES_H
2#define ALIANACHARGEDPARTICLES_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
477d6cee 5
6//_________________________________________________________________________
34c16486 7//
8// Class for track selection and identification (not done now)
9// Tracks from the CTS are kept in the AOD.
10// Few histograms produced.
477d6cee 11//
12//-- Author: Gustavo Conesa (INFN-LNF)
34c16486 13
7cd4e982 14// Root system
477d6cee 15class TH2F;
05d0d05d 16
7cd4e982 17// Analysis system
745913ae 18#include "AliAnaCaloTrackCorrBaseClass.h"
477d6cee 19
745913ae 20class AliAnaChargedParticles : public AliAnaCaloTrackCorrBaseClass {
477d6cee 21
22 public:
477d6cee 23 AliAnaChargedParticles() ; // default ctor
05d0d05d 24 virtual ~AliAnaChargedParticles() { ; } //virtual dtor
52bd777f 25
477d6cee 26 TList * GetCreateOutputObjects();
cc944149 27
05d0d05d 28 void Init();
477d6cee 29
05d0d05d 30 void InitParameters();
477d6cee 31
05d0d05d 32 void Print(const Option_t * opt) const;
477d6cee 33
05d0d05d 34 void MakeAnalysisFillAOD() ;
477d6cee 35
05d0d05d 36 void MakeAnalysisFillHistograms() ;
477d6cee 37
52bd777f 38 void SwitchOnFillPileUpHistograms() { fFillPileUpHistograms = kTRUE ; }
39 void SwitchOffFillPileUpHistograms() { fFillPileUpHistograms = kFALSE ; }
fedea415 40
52bd777f 41 void SwitchOnFillVertexBC0Histograms() { fFillVertexBC0Histograms = kTRUE ; }
42 void SwitchOffFillVertexBC0Histograms() { fFillVertexBC0Histograms = kFALSE ; }
43
fedea415 44 private:
05d0d05d 45
cbd6236f 46 Bool_t fFillPileUpHistograms; // Fill pile-up related histograms
47 Bool_t fFillVertexBC0Histograms; // Fill histograms for tracks with vertex BC=0 or not related histograms
52bd777f 48
fedea415 49 //Histograms
05d0d05d 50 TH1F * fhNtracks; //! track multiplicity distribution
51 TH1F * fhPt; //! pT distribution
52bd777f 52 TH1F * fhPtNoCut; //! pT distribution, no cut
53 TH1F * fhPtCutDCA; //! pT distribution, Apply DCA cut
54 TH1F * fhPtCutDCABCOK;//! pT distribution, Apply DCA cut, BC=0 or -100
55
fedea415 56 TH1F * fhPtPileUp[7]; //! pT distribution, pile-up defined events
05d0d05d 57 TH2F * fhPhiNeg; //! phi distribution vs pT, negative
58 TH2F * fhEtaNeg; //! eta distribution vs pT, negative
59 TH2F * fhPhiPos; //! phi distribution vs pT, positive
60 TH2F * fhEtaPos; //! eta distribution vs pT, positive
61 TH2F * fhEtaPhiPos; //! eta vs phi distribution of positive charge
fe9615b9 62 TH2F * fhEtaPhiNeg; //! eta vs phi distribution of negative charge
63
52bd777f 64 TH1F * fhPtVtxOutBC0; //! pT distribution of tracks from a vertex with BC!=0
65 TH2F * fhEtaPhiVtxOutBC0;//! eta/phi distribution of tracks from a vertex with BC!=0
66 TH1F * fhPtVtxInBC0; //! pT distribution of tracks from a vertex with BC=0
67 TH2F * fhEtaPhiVtxInBC0; //! eta/phi distribution of tracks from a vertex with BC=0
68
8f467228 69 TH1F * fhPtSPDRefit; //! pT distribution of tracks with SPD and ITS refit
70 TH1F * fhPtNoSPDRefit; //! pT distribution of constrained tracks no SPD and with ITSRefit
71 TH1F * fhPtNoSPDNoRefit; //! pT distribution of constrained tracks with no SPD requierement and without ITSRefit
72
73 TH2F * fhEtaPhiSPDRefitPt02; //! eta-phi distribution of tracks with SPD and ITS refit, 0 < pT < 2 GeV
74 TH2F * fhEtaPhiNoSPDRefitPt02; //! eta-phi distribution of constrained tracks no SPD and with ITSRefit, 0 < pT < 2 GeV
75 TH2F * fhEtaPhiNoSPDNoRefitPt02; //! eta-phi distribution of constrained tracks with no SPD requierement and without ITSRefit, 0 < pT < 2 GeV
76
77 TH2F * fhEtaPhiSPDRefitPt3; //! eta-phi distribution of tracks with SPD and ITS refit, pT > 3 GeV
78 TH2F * fhEtaPhiNoSPDRefitPt3; //! eta-phi distribution of constrained tracks no SPD and with ITSRefit, pT > 3 GeV
79 TH2F * fhEtaPhiNoSPDNoRefitPt3; //! eta-phi distribution of constrained tracks with no SPD requierement and without ITSRefit, pT > 3 GeV
80
477d6cee 81 //MC
05d0d05d 82 TH1F * fhPtPion; //! pT distribution
83 TH2F * fhPhiPion; //! phi distribution vs pT
84 TH2F * fhEtaPion; //! eta distribution vs pT
477d6cee 85
05d0d05d 86 TH1F * fhPtProton; //! pT distribution
87 TH2F * fhPhiProton; //! phi distribution vs pT
88 TH2F * fhEtaProton; //! eta distribution vs pT
477d6cee 89
05d0d05d 90 TH1F * fhPtElectron; //! pT distribution
477d6cee 91 TH2F * fhPhiElectron; //! phi distribution vs pT
92 TH2F * fhEtaElectron; //! eta distribution vs pT
93
05d0d05d 94 TH1F * fhPtKaon; //! pT distribution
95 TH2F * fhPhiKaon; //! phi distribution vs pT
96 TH2F * fhEtaKaon; //! eta distribution vs pT
477d6cee 97
05d0d05d 98 TH1F * fhPtUnknown; //! pT distribution
99 TH2F * fhPhiUnknown; //! phi distribution vs pT
100 TH2F * fhEtaUnknown; //! eta distribution vs pT
477d6cee 101
fe9615b9 102 // TOF
fedea415 103 TH1F * fhTOFSignal; //! TOF signal
104 TH1F * fhTOFSignalPtCut; //! TOF signal pt and acceptance cut
105 TH1F * fhTOFSignalBCOK; //! TOF signal pt and acceptance cut
106 TH2F * fhPtTOFSignal; //! TOF signal vs track pT, good status
cc944149 107 TH2F * fhPtTOFSignalDCACut; //! TOF signal vs track pT, good status
fedea415 108 TH2F * fhPtTOFSignalPileUp[7]; //! TOF signal vs track pT, good status, pile-up
52bd777f 109 TH2F * fhPtTOFSignalVtxOutBC0; //! TOF signal vs track pT, good status
110 TH2F * fhPtTOFSignalVtxOutBC0PileUp[7];//! TOF signal vs track pT, good status, pile-up
111 TH2F * fhPtTOFSignalVtxInBC0; //! TOF signal vs track pT, good status
112 TH2F * fhPtTOFSignalVtxInBC0PileUp[7]; //! TOF signal vs track pT, good status, pile-up
fedea415 113 TH1F * fhPtTOFStatus0; //! pT of tracks not passing TOF status selection
114 TH2F * fhEtaPhiTOFStatus0; //! eta/phi of tracks not passing TOF status selection
115 TH2F * fhEtaPhiTOFBC0; //! eta/phi of tracks passing TOF status selection, tracks in BC=0
116 TH2F * fhEtaPhiTOFBCPlus; //! eta/phi of tracks passing TOF status selection, tracks in BC>0
117 TH2F * fhEtaPhiTOFBCMinus; //! eta/phi of tracks passing TOF status selection, tracks in BC<0
118 TH2F * fhEtaPhiTOFBC0PileUpSPD; //! eta/phi of tracks passing TOF status selection, tracks in BC=0, pile-up spd
119 TH2F * fhEtaPhiTOFBCPlusPileUpSPD; //! eta/phi of tracks passing TOF status selection, tracks in BC>0, pile-up spd
120 TH2F * fhEtaPhiTOFBCMinusPileUpSPD; //! eta/phi of tracks passing TOF status selection, tracks in BC<0, pile-up spd
52bd777f 121
122 TH1F * fhProductionVertexBC; //! check BC of production vertex
123 TH1F * fhProductionVertexBCPileUp[7]; //! check BC of production vertex, pile-up
fe9615b9 124
fedea415 125 TH2F * fhPtDCA[3]; //! DCA (xy,z,constrained) of all tracks
8f467228 126
127 TH2F * fhPtDCASPDRefit[3]; //! DCA (xy,z,constrained) of tracks with SPD and ITS refit
128 TH2F * fhPtDCANoSPDRefit[3]; //! DCA (xy,z,constrained) of constrained tracks no SPD and with ITSRefit
129 TH2F * fhPtDCANoSPDNoRefit[3]; //! DCA (xy,z,constrained) of constrained tracks with no SPD requierement and without ITSRefit
130
52bd777f 131 TH2F * fhPtDCAVtxOutBC0[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC!=0
132 TH2F * fhPtDCAVtxInBC0[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC==0
fedea415 133 TH2F * fhPtDCAPileUp[3]; //! DCA (xy,z,constrained) of all tracks, SPD pile-up
52bd777f 134 TH2F * fhPtDCAVtxOutBC0PileUp[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC!=0, SPD pile-up
135 TH2F * fhPtDCAVtxInBC0PileUp[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC==0, SPD pile-up
fedea415 136
137 TH2F * fhPtDCATOFBC0[3]; //! DCA (xy,z,constrained) of all tracks, hit in TOF and BC=0
138 TH2F * fhPtDCAPileUpTOFBC0[3]; //! DCA (xy,z,constrained) of all tracks, hit in TOF and BC=0
52bd777f 139 TH2F * fhPtDCATOFBCOut[3]; //! DCA (xy,z,constrained) of all tracks, hit in TOF and BC!=0
fedea415 140
141 TH2F * fhPtDCANoTOFHit[3]; //! DCA (xy,z,constrained) of all tracks, no hit in TOF
52bd777f 142 TH2F * fhPtDCAVtxOutBC0NoTOFHit[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC!=0, no hit in TOF
143 TH2F * fhPtDCAVtxInBC0NoTOFHit[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC=0, no hit in TOF
fedea415 144 TH2F * fhPtDCAPileUpNoTOFHit[3]; //! DCA (xy,z,constrained) of all tracks, SPD pile-up, no hit in TOF
52bd777f 145 TH2F * fhPtDCAVtxOutBC0PileUpNoTOFHit[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC!=0, SPD pile-up, no hit in TOF
146 TH2F * fhPtDCAVtxInBC0PileUpNoTOFHit[3]; //! DCA (xy,z,constrained) of all tracks, vertex BC=0, SPD pile-up, no hit in TOF
fedea415 147
148
34c16486 149 AliAnaChargedParticles( const AliAnaChargedParticles & ch) ; // cpy ctor
150 AliAnaChargedParticles & operator = (const AliAnaChargedParticles & ch) ; // cpy assignment
c5693f62 151
52bd777f 152 ClassDef(AliAnaChargedParticles,7)
05d0d05d 153
154} ;
477d6cee 155
156
157#endif //ALIANACHARGEDPARTICLES_H
158
159
160