AliPhysics  9074f74 (9074f74)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliAnalysisTaskPhiFlow.h
Go to the documentation of this file.
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. */
2 /* See cxx source for full Copyright notice */
3 /* $Id$ */
4 
5 // AliAnalysisTaskPhiFlow:
6 // origin: Redmer Alexander Bertens (rbertens@nikhef.nl)
7 // analyis task for phi-meson reconstruction and estimation of v_n
8 
9 #ifndef ALIANALYSISTASKPHIFLOW_H
10 #define ALIANALYSISTASKPHIFLOW_H
11 
12 class TH1F;
13 class TH2F;
14 class TProfile;
15 class AliESDEvent;
16 class AliESDtrackCuts;
17 class AliFlowTrackCuts;
18 class AliFlowEvent;
20 class AliFlowBayesianPID;
21 class AliEventPoolManager;
22 class AliPIDCombined;
23 
24 #include "AliAnalysisTaskSE.h"
25 
26 class AliPhiMesonHelperTrack : public TObject
27 {
28 public:
29  AliPhiMesonHelperTrack(Float_t eta, Float_t phi, Float_t p, Float_t px, Float_t py, Float_t pz, Float_t pt, Int_t charge) : fEta(eta), fPhi(phi), fp(p), fpX(px), fpY(py), fpZ(pz), fpT(pt), fCharge(charge) { }
31  virtual Double_t P() const { return fp; }
32  virtual Double_t Px() const { return fpX; }
33  virtual Double_t Py() const { return fpY; }
34  virtual Double_t Pz() const { return fpZ; }
35  virtual Double_t Pt() const { return fpT; }
36  virtual Double_t Phi() const { return fPhi; }
37  virtual Double_t Eta() const { return fEta; }
38  virtual Int_t Charge() const { return fCharge; }
39  void InitializeHelperTrack(Float_t eta, Float_t phi, Float_t p, Float_t px, Float_t py, Float_t pz, Float_t pt, Int_t charge) { fEta = eta; fPhi = phi; fp = p; fpX = px; fpY = py; fpZ = pz; fpT = pt; fCharge = charge; }
40 private:
41  Float_t fEta; // eta
42  Float_t fPhi; // phi
43  Float_t fp; // p
44  Float_t fpX; // pX
45  Float_t fpY; // pY
46  Float_t fpZ; // pZ
47  Float_t fpT; // pT
48  Int_t fCharge; // charge
49  ClassDef(AliPhiMesonHelperTrack, 1); // lightweight helper track for phi reconstruction
50 };
51 
52 class AliAnalysisTaskPhiFlow : public AliAnalysisTaskSE
53 {
54 public:
56  AliAnalysisTaskPhiFlow(const char *name);
57  virtual ~AliAnalysisTaskPhiFlow();
58  Int_t SetDebugLevelPhiTask(Int_t debug) {fDebug = debug; return fDebug; }
59  Bool_t SetIsMC(Bool_t ismc) {fIsMC = ismc; return fIsMC; }
60  Bool_t UseEventMixing(Bool_t mix, Bool_t type) {fEventMixing = mix; fTypeMixing = type; return mix; }
61  Bool_t SetVZEROSubEvents(Bool_t v0) { fV0 = v0; return v0; }
62  TH1F* BookHistogram(const char * name);
63  TH2F* BookPIDHistogram(const char * name, Bool_t TPC);
64  TH1F* InitPtSpectraHistograms(Float_t nmin, Float_t nmax);
65  TH1F* BookPtHistogram(const char* name);
67  virtual void UserCreateOutputObjects();
68  AliEventPoolManager* InitializeEventMixing();
69  void SetPtBins(Float_t bin[19], Int_t n) { for(Int_t i = 0; i < n+1; i++) fPtBins[i] = bin[i]; fNPtBins = n; }
70  template <typename T> Double_t InvariantMass(const T* track1, const T* track2) const;
71 // template <typename T> Double_t DeltaDipAngle(const T* track1, const T* track2) const;
72 // template <typename T> Bool_t CheckDeltaDipAngle(const T* track1, const T* track2) const;
73  template <typename T> Bool_t CheckCandidateEtaPtCut(const T* track1, const T* track2) const;
74  void SetCentralityParameters(Double_t min, Double_t max, const char* a, const char* b, Bool_t c, Bool_t d) {
75  fCentralityMin = min;
76  fCentralityMax = max;
79  fCentralityCut2010 = c;
80  fCentralityCut2011 = d;}
81  void SetCurrentCentralityBin(Double_t c) {fCentrality = c; }
82  Double_t GetCenMin() const {return fCentralityMin; }
83  Double_t GetCenMax() const {return fCentralityMax; }
84  const char* GetCentralityMethod() const {return fkCentralityMethodA; }
85  void SetVertexZ(Float_t z) { fVertexRange = z; }
86  Float_t GetVertexZ() const { return fVertexRange; }
87 // void SetMaxDeltaDipAngleAndPt(Float_t a, Float_t pt) { fDeltaDipAngle = a;
88 // fDeltaDipPt = pt;
89 // fApplyDeltaDipCut = kTRUE; };
90 // Float_t GetDeltaDipAngle() const {return fDeltaDipAngle; }
91 // Float_t GetDeltaDipPt() const {return fDeltaDipPt; }
92  template <typename T> Bool_t EventCut(T* event);
93  template <typename T> void PlotMultiplcities(const T* event) const;
94  template <typename T> Bool_t CheckVertex(const T* event);
95  template <typename T> Bool_t CheckCentrality(T* event);
96  void InitializeBayesianPID(AliAODEvent* event);
97  template <typename T> Bool_t PassesTPCbayesianCut(T* track) const;
98  Bool_t PassesDCACut(AliAODTrack* track) const;
99  Bool_t IsKaon(AliAODTrack* track) const;
100  template <typename T> Double_t PhiPt(const T* track_1, const T* track_2) const;
101  template <typename T> void PtSelector(Int_t _track_type, const T* track_1, const T* track_2) const;
102  template <typename T> Bool_t PhiTrack(T* track) const;
103  template <typename T> void SetNullCuts(T* esd);
104  void PrepareFlowEvent(Int_t iMulti);
105  void VZEROSubEventAnalysis();
106  virtual void UserExec(Option_t *option);
107  virtual void Exec(Option_t *);
108  void ReconstructionWithEventMixing(TObjArray* MixingCandidates) const;
109  virtual void Terminate(Option_t *);
110  void SetPOICuts(AliFlowTrackCuts *cutsPOI) { fPOICuts = cutsPOI; }
111  void SetRPCuts(AliFlowTrackCuts *cutsRP) { fCutsRP = cutsRP; }
113  AliFlowTrackCuts* GetRPCuts() const {return fCutsRP;}
114  void SetPIDConfiguration(Double_t prob[7]) { for(Int_t i = 0; i < 7; i++) fPIDConfig[i] = prob[i]; }
115  void GetPIDConfiguration(Double_t prob[7]) const {for(Int_t i = 0; i < 7; i++) prob[i] = fPIDConfig[i]; }
116  void SetPOIDCAXYZ(Double_t dca[5]) { for(Int_t i = 0; i < 5; i++) fDCAConfig[i] = dca[i]; }
117  void GetPOIDCZXYZ(Double_t dca[5]) const { for(Int_t i = 0; i < 5; i++) dca[i] = fDCAConfig[i]; }
118  void SetMixingBins(Int_t c[20], Int_t v[20]) {for(Int_t i = 0; i < 20; i++) { fCentralityMixingBins[i] = c[i];
119  fVertexMixingBins[i] = v[i]; } }
120  void SetMixingParameters(Int_t p[3]) { for(Int_t i = 0; i < 3; i++) fMixingParameters[i] = p[i]; }
121  void GetMixingParameters(Int_t p[3]) const { for(Int_t i = 0; i < 3; i++) p[i] = fMixingParameters[i]; }
122  void SetCandidateEtaAndPt(Double_t mineta, Double_t maxeta, Double_t minpt, Double_t maxpt) { fCandidateMinEta = mineta;
123  fCandidateMaxEta = maxeta;
124  fCandidateMinPt = minpt;
125  fCandidateMaxPt = maxpt;
126  fCandidateEtaPtCut = kTRUE;}
127  void SetCandidateMinMaxY(Double_t min, Double_t max){
128  fCandidateMinY = min;
129  fCandidateMaxY = max;
130  fCandidateYCut = kTRUE;
131  }
132  void GetCandidateEtaAndPt(Double_t etapt[4]) const { etapt[0] = fCandidateMinEta;
133  etapt[1] = fCandidateMaxEta;
134  etapt[2] = fCandidateMinPt;
135  etapt[3] = fCandidateMaxPt; }
136  void SetCommonConstants(Int_t massBins, Double_t minMass, Double_t maxMass) { fMassBins = massBins;
137  fMinMass = minMass;
138  fMaxMass= maxMass; }
139  void IsMC();
140  Bool_t SetQA(Bool_t qa) {fQA = qa; return fQA;}
141  void SetSkipEventSelection(Bool_t s) {
143  fUsePidResponse = kTRUE; // bayesian pid object will require some event info
144  fCentrality = 5.;} // should be set by user, skipping event selection will also forego centrality selection
145  void SetUsePidResponse(Bool_t s) {fUsePidResponse = s;}
146 
147 private:
148 
149  Int_t fDebug; // debug level (0 none, 1 fcn calls, 2 verbose)
150  Bool_t fIsMC; // use mc mode
151  Bool_t fEventMixing; // use event mixing
152  Bool_t fTypeMixing; // select type: kTRUE for unlike sign background, kFALSE for like sign background
153  Bool_t fQA; // make qa plots
154  Bool_t fV0; // use three subevents including vzero
155  Int_t fMassBins; // mass bins
156  Double_t fMinMass; // mass range
157  Double_t fMaxMass; // mass range
158  AliFlowTrackCuts *fCutsRP; // track cuts for reference particles
159  AliFlowTrackCuts *fNullCuts; // dummy cuts for flow event tracks
160  AliPIDResponse *fPIDResponse;
163  TObjArray *fCandidates; // candidate array
164  Bool_t fCandidateEtaPtCut; // set eta and pt cut for candidate tracks and combinatorial background
165  Double_t fCandidateMinEta; // minimum eta for candidates
166  Double_t fCandidateMaxEta; // maximum eta for candidates
167  Double_t fCandidateMinPt; // minimum pt for candidates
168  Double_t fCandidateMaxPt; // maximum pt for candidates
169  Bool_t fCandidateYCut; // y cut on candidates
170  Double_t fCandidateMinY; // min y value for candidate
171  Double_t fCandidateMaxY; // max y value for canddiates
172  Double_t fPIDConfig[7]; // configure pid routine
173  Double_t fDCAConfig[5]; // configure dca routine
174  Int_t fMixingParameters[3]; // mixing: poolsize, mixing tracks, pool buffer
175  Int_t fCentralityMixingBins[20]; // configure centrality bins for event mixing
176  Int_t fVertexMixingBins[20]; // configure vertex bins for event mixing
177  Float_t fPtBins[19]; // pt bin borders
178  Int_t fNPtBins; // no of pt bins + 1
179  Double_t fCentrality; // event centrality
180  Double_t fVertex; // event vertex z
181  AliAODEvent *fAOD;
182  AliEventPoolManager *fPoolManager;
183  TList *fOutputList; // ! Output list
184  TH1F *fEventStats; // ! Histogram for event statistics
185  TH1F *fCentralityPass; // ! QA histogram of events that pass centrality cut
187  TH2F *fNOPID;
188  TH2F *fPIDk;
189  TH2F *fNOPIDTOF;
190  TH2F *fPIDTOF;
191  TH1F *fInvMNP[18];
192  TH1F *fInvMNN[18];
193  TH1F *fInvMPP[18];
194  TH1F *fPtSpectra[18];
195  TH1F *fPtP;
196  TH1F *fPtN;
197  TH1F *fPtKP;
198  TH1F *fPtKN;
200  TH2F *fMultvsCentr;
201  Double_t fCentralityMin; // lower bound of cenrality bin
202  Double_t fCentralityMax; // upper bound of centrality bin
203  const char *fkCentralityMethodA; // method used to determine centrality, default
204  const char *fkCentralityMethodB; // method used to determine centrality, fallback
205  Bool_t fCentralityCut2010; // cut away the multiplicity outliers 2010
206  Bool_t fCentralityCut2011; // cut away the multiplicity outliers 2011
207  AliFlowTrackCuts *fPOICuts; // cuts for particles of interest (flow package)
208  Float_t fVertexRange; // absolute value of maximum distance of vertex along the z-axis
209  TH1F *fPhi;
210  TH1F *fPt;
211  TH1F *fEta;
212  TH1F *fVZEROA;
213  TH1F *fVZEROC;
214  TH1F *fTPCM;
215 // Float_t fDeltaDipAngle; // absolute value of delta dip angle to be excluded
216 // Float_t fDeltaDipPt; // upper value of pt range in which delta dip angle must be applied
217 // Bool_t fApplyDeltaDipCut; // enforce delta dip cut
218  TH2F *fDCAAll;
219  TH1F *fDCAXYQA;
220  TH1F *fDCAZQA;
221  TH2F *fDCAPrim;
223  TH2F *fDCAMaterial;
224  TProfile *fSubEventDPhiv2;
225  TProfile *fV0Data[18][2];
226  Bool_t fSkipEventSelection;// skip event selection and set bayesian pid object to MC mode
227  Bool_t fUsePidResponse;//use pid response instead of aliflowbayesianpid object for pid
228  AliPIDCombined* fPIDCombined; // pid combined
229  AliAnalysisTaskPhiFlow(const AliAnalysisTaskPhiFlow&); // Not implemented
230  AliAnalysisTaskPhiFlow& operator=(const AliAnalysisTaskPhiFlow&); // Not implemented
231  void MakeTrack(Double_t, Double_t, Double_t, Double_t, Int_t , Int_t[], Double_t p = 0., Double_t pz = 0.) const;
232 
234 };
235 
236 #endif
237 
238 
239 
Int_t charge
virtual Double_t Pt() const
Bool_t PassesTPCbayesianCut(T *track) const
TProfile * fV0Data[18][2]
subevent resolution info for v2
Double_t fCentralityMin
QA profile of centralty vs multiplicity.
Bool_t CheckVertex(const T *event)
TH2F * fDCASecondaryWeak
dca of primaries (mc) or kaons (data)
TH1F * fPtKP
QA histogram of p_t distribution of negative particles.
AliFlowEvent * fFlowEvent
pid response object
void ReconstructionWithEventMixing(TObjArray *MixingCandidates) const
Double_t PhiPt(const T *track_1, const T *track_2) const
TH2F * fPIDk
QA histogram of TPC response of all charged particles.
void SetCurrentCentralityBin(Double_t c)
TH1F * fPtKN
QA histogram of p_t distribution of positive kaons.
TH2F * fDCAPrim
qa plot of dca z
void PlotMultiplcities(const T *event) const
TH2F * fDCAMaterial
dca of weak (mc)
TH1F * fPtSpectra[18]
like-sign kaon pairs
TH1F * fVZEROC
QA plot vzeroa multiplicity (all tracks in event)
Double_t InvariantMass(const T *track1, const T *track2) const
TH2F * fPIDTOF
QA histo of TOF repsonse charged particles.
AliFlowTrackCuts * GetRPCuts() const
void SetMixingParameters(Int_t p[3])
void SetPOICuts(AliFlowTrackCuts *cutsPOI)
Bool_t fSkipEventSelection
profiles for vzero vn(minv)
void SetPOIDCAXYZ(Double_t dca[5])
TH1F * fPt
QA plot of azimuthal distribution of tracks used for event plane estimation.
virtual void Exec(Option_t *)
void GetMixingParameters(Int_t p[3]) const
Bool_t PassesDCACut(AliAODTrack *track) const
void PrepareFlowEvent(Int_t iMulti)
virtual Double_t Pz() const
void GetPIDConfiguration(Double_t prob[7]) const
virtual Double_t P() const
TH1F * fVZEROA
QA plot of eta distribution of tracks used for event plane estimation.
const char * GetCentralityMethod() const
AliPhiMesonHelperTrack(Float_t eta, Float_t phi, Float_t p, Float_t px, Float_t py, Float_t pz, Float_t pt, Int_t charge)
Bool_t SetIsMC(Bool_t ismc)
virtual Double_t Eta() const
TH2F * fMultvsCentr
QA profile global and tpc multiplicity after outlier cut.
TH1F * fEta
QA plot of p_t sectrum of tracks used for event plane estimation.
TH1F * fInvMNN[18]
unlike sign kaon pairs
AliEventPoolManager * InitializeEventMixing()
void InitializeHelperTrack(Float_t eta, Float_t phi, Float_t p, Float_t px, Float_t py, Float_t pz, Float_t pt, Int_t charge)
Bool_t PhiTrack(T *track) const
virtual Double_t Px() const
TH2F * fMultCorAfterCuts
QA histogram of p_t distribution of negative kaons.
TH1F * fDCAZQA
qa plot of dca xz
Bool_t fUsePidResponse
profiles for vzero vn(minv)
TObjArray * fCandidates
PID response object.
AliFlowTrackCuts * fPOICuts
QA profile of centralty vs multiplicity.
TH1F * fInvMNP[18]
QA histo of TOF response kaons.
Bool_t CheckCandidateEtaPtCut(const T *track1, const T *track2) const
Bool_t SetVZEROSubEvents(Bool_t v0)
void SetRPCuts(AliFlowTrackCuts *cutsRP)
virtual Double_t Phi() const
void InitializeBayesianPID(AliAODEvent *event)
void SetCommonConstants(Int_t massBins, Double_t minMass, Double_t maxMass)
TH1F * fPtN
QA histogram of p_t distribution of positive particles.
TH1F * BookHistogram(const char *name)
AliFlowBayesianPID * fBayesianResponse
flow events (one for each inv mass band)
void GetCandidateEtaAndPt(Double_t etapt[4]) const
ClassDef(AliPhiMesonHelperTrack, 1)
Double_t minMass
TH1F * InitPtSpectraHistograms(Float_t nmin, Float_t nmax)
void SetCandidateEtaAndPt(Double_t mineta, Double_t maxeta, Double_t minpt, Double_t maxpt)
TH1F * fDCAXYQA
qa dca of all charged particles
virtual Int_t Charge() const
void SetCentralityParameters(Double_t min, Double_t max, const char *a, const char *b, Bool_t c, Bool_t d)
TH2F * fNOPIDTOF
QA histogram of TPC response of kaons.
ClassDef(AliAnalysisTaskPhiFlow, 7)
Bool_t IsKaon(AliAODTrack *track) const
TH2F * fDCAAll
QA plot TPC multiplicity (tracks used for event plane estimation)
Double_t maxMass
TList * fOutputList
event pool manager
virtual void Terminate(Option_t *)
void SetPIDConfiguration(Double_t prob[7])
TProfile * fSubEventDPhiv2
dca material (mc) all (data)
void GetPOIDCZXYZ(Double_t dca[5]) const
TH1F * BookPtHistogram(const char *name)
TH1F * fTPCM
QA plot vzeroc multiplicity (all tracks in event)
TH2F * BookPIDHistogram(const char *name, Bool_t TPC)
void SetMixingBins(Int_t c[20], Int_t v[20])
Bool_t UseEventMixing(Bool_t mix, Bool_t type)
virtual void UserExec(Option_t *option)
AliEventPoolManager * fPoolManager
AOD oject.
virtual Double_t Py() const
AliFlowTrackCuts * GetPOICuts() const
void SetCandidateMinMaxY(Double_t min, Double_t max)
TH1F * fInvMPP[18]
like-sign kaon pairs
AliAnalysisTaskPhiFlow & operator=(const AliAnalysisTaskPhiFlow &)
Int_t SetDebugLevelPhiTask(Int_t debug)
void PtSelector(Int_t _track_type, const T *track_1, const T *track_2) const
TH2F * fNOPID
QA histogram of events that do not pass centrality cut.
void MakeTrack(Double_t, Double_t, Double_t, Double_t, Int_t, Int_t[], Double_t p=0., Double_t pz=0.) const
void SetPtBins(Float_t bin[19], Int_t n)