AliPhysics  0937c79 (0937c79)
AliCFTaskVertexingHF.h
Go to the documentation of this file.
1 #ifndef ALICFTASKVERTEXINGHF_H
2 #define ALICFTASKVERTEXINGHF_H
3 /**************************************************************************
4  * Copyright(c) 1998-2009, ALICE Experiment at CERN, All rights reserved. *
5  * *
6  * Author: The ALICE Off-line Project. *
7  * Contributors are mentioned in the code where appropriate. *
8  * *
9  * Permission to use, copy, modify and distribute this software and its *
10  * documentation strictly for non-commercial purposes is hereby granted *
11  * without fee, provided that the above copyright notice appears in all *
12  * copies and that both the copyright notice and this permission notice *
13  * appear in the supporting documentation. The authors make no claims *
14  * about the suitability of this software for any purpose. It is *
15  * provided "as is" without express or implied warranty. *
16  **************************************************************************/
17 
18 /* $Id$ */
19 
20 //-----------------------------------------------------------------------
25 //-----------------------------------------------------------------------
26 
27 
28 #include "AliAnalysisTaskSE.h"
29 #include "AliCFVertexingHF2Prong.h"
30 #include "AliCFVertexingHF3Prong.h"
32 #include "AliCFVertexingHF.h"
33 #include <TH1F.h>
34 #include <TProfile.h>
35 
36 class TH1I;
37 class TParticle ;
38 class TFile ;
39 class TClonesArray ;
40 class AliCFManager;
41 class AliAODRecoDecay;
43 class AliAODMCParticle;
44 class THnSparse;
45 class TF1;
46 class AliRDHFCuts;
49 
51  public:
52 
53  enum {
65  };
66 
67  enum {
68  kSnail = 0,
69  kCheetah = 1,
70  kFalcon = 2,
71  kESE = 3
72  };
73 
74  enum {
75  kAll = 0,
77  kL1520 = 2,
78  kKstar = 3,
79  kDelta = 4
80  };
81 
82  enum { kNtrk10=0, kNtrk10to16=1, kVZERO=2 };
83 
85  AliCFTaskVertexingHF(const Char_t* name, AliRDHFCuts* cuts, TF1* func = 0x0);
88  virtual ~AliCFTaskVertexingHF();
89 
92  void UserExec(Option_t *option);
93  void Init();
94  void LocalInit() {Init();}
95  void Terminate(Option_t *);
96 
98  void SetCorrelationMatrix(THnSparse* h) {fCorrelation=h;}
99  void SetAcceptanceUnf(Bool_t AcceptanceUnf) {fAcceptanceUnf = AcceptanceUnf;}
101 
102 
104  void SetCFManager(AliCFManager* io) {fCFManager = io;}
105  AliCFManager * GetCFManager() {return fCFManager;}
106 
110  void SetDecayChannel (Int_t decayChannel) {fDecayChannel = decayChannel;}
112  void SetUseWeight(Bool_t useWeight){fUseWeight=useWeight;}
113  Bool_t GetUseWeight() const {return fUseWeight;}
115  Double_t dNdptFit(Float_t pt, Double_t* par);
117 
118  void SetUseFlatPtWeight(Bool_t useWeight){fUseFlatPtWeight=useWeight; fUseWeight=useWeight;}
120  void SetUseZWeight(Bool_t useWeight){fUseZWeight=useWeight;}
121  Bool_t GetUseZWeight() const {return fUseZWeight;}
122  Double_t GetZWeight(Float_t z, Int_t runnumber);
123  Double_t DodzFit(Float_t z, Double_t* par);
124 
125  void SetUseNchWeight(Bool_t useWeight){fUseNchWeight=useWeight;}
127  void SetMCNchHisto(TH1F* h){
128  if(fHistoMCNch) delete fHistoMCNch;
129  fHistoMCNch=new TH1F(*h);
130  }
131  void CreateMeasuredNchHisto();
132  void SetMeasuredNchHisto(TH1F* h){
133  if(fHistoMeasNch) delete fHistoMeasNch;
134  fHistoMeasNch=new TH1F(*h);
135  }
139  void SetIsPPData(Bool_t flag){ fIsPPData = flag; }
140  void SetIsPPbData(Bool_t flag){ fIsPPbData = flag; }
141 
142  void SetUseNchTrackletsWeight(Bool_t useWeight = kTRUE) { fUseNchWeight=useWeight; fUseTrackletsWeight=useWeight; fUseMultRatioAsWeight=useWeight; }
146 
149  void SetMultiplVsZProfileLHC10b(TProfile* hprof){
150  if(fMultEstimatorAvg[0]) delete fMultEstimatorAvg[0];
151  fMultEstimatorAvg[0]=new TProfile(*hprof);
152  }
153  void SetMultiplVsZProfileLHC10c(TProfile* hprof){
154  if(fMultEstimatorAvg[1]) delete fMultEstimatorAvg[1];
155  fMultEstimatorAvg[1]=new TProfile(*hprof);
156  }
157  void SetMultiplVsZProfileLHC10d(TProfile* hprof){
158  if(fMultEstimatorAvg[2]) delete fMultEstimatorAvg[2];
159  fMultEstimatorAvg[2]=new TProfile(*hprof);
160  }
161  void SetMultiplVsZProfileLHC10e(TProfile* hprof){
162  if(fMultEstimatorAvg[3]) delete fMultEstimatorAvg[3];
163  fMultEstimatorAvg[3]=new TProfile(*hprof);
164  }
165 
166  void SetMultiplVsZProfileLHC13b(TProfile* hprof){
167  if(fMultEstimatorAvg[0]) delete fMultEstimatorAvg[0];
168  fMultEstimatorAvg[0]=new TProfile(*hprof);
169  }
170  void SetMultiplVsZProfileLHC13c(TProfile* hprof){
171  if(fMultEstimatorAvg[1]) delete fMultEstimatorAvg[1];
172  fMultEstimatorAvg[1]=new TProfile(*hprof);
173  }
174 
175 
176  TProfile* GetEstimatorHistogram(const AliVEvent* event);
178 
179  void SetDselection(UShort_t originDselection) {fOriginDselection=originDselection;}
181  void SetSign(Char_t isSign) {fSign = isSign;}
182  Char_t GetSign() {return fSign;}
183 
184  void SetCentralitySelection(Bool_t centSelec = kTRUE) {fCentralitySelection = centSelec;}
186 
187  void SetFakeSelection(Int_t fakeSel = 0) {fFakeSelection=fakeSel;}
189 
192 
195 
196 
205 
206  Bool_t ProcessDs(Int_t returnCodeDs) const;
207 
208  void SetConfiguration(Int_t configuration) {(configuration == kSnail) ? Printf("Slow configuration chosen, all variables will be used!") : Printf("Fast configuration chosen, all variablesOnly pt, y, phi, ct, fake, z_vtx, centrality and multiplicity will be used!"); fConfiguration = configuration;}
210 
211  void SetWeightFunction(TF1* func) {fFuncWeight = func;}
212  TF1* GetWeightFunction() const {return fFuncWeight;}
213  void SetWeightHistogram(TH1F* histo) {
214  if(fHistoPtWeight) delete fHistoPtWeight;
215  fHistoPtWeight=new TH1F(*histo);
216  }
217  TH1F* GetWeightHistogram() const {return (TH1F*)fHistoPtWeight;}
218 
235 
247 
248  void SetResonantDecay(UInt_t resonantDecay) {fResonantDecay = resonantDecay;}
250 
255 
258 
261 
262  Bool_t ProcessLctoV0Bachelor(Int_t returnCodeDs) const;
263 
266  void SetUseCutsForTMVA(Bool_t useCutsForTMVA) { fDecayChannel == 22 ? fUseCutsForTMVA = useCutsForTMVA : fUseAdditionalCuts = kFALSE;}
268 
269  void SetUseCascadeTaskForLctoV0bachelor(Bool_t useCascadeTaskForLctoV0bachelor) {fUseCascadeTaskForLctoV0bachelor = useCascadeTaskForLctoV0bachelor;}
271 
272  void SetFillMinimumSteps(Bool_t FillMinimumSteps) {fFillMinimumSteps = FillMinimumSteps;}
274 
277 
278  Double_t ComputeTPCq2(AliAODEvent* aod, AliAODMCHeader* mcHeader, Double_t etamin, Double_t etamax, Double_t ptmin, Double_t ptmax) const;
279 
280  protected:
281  AliCFManager *fCFManager;
283  THnSparse* fCorrelation;
284  TList *fListProfiles; //list of profile histos for z-vtx correction
320  TF1* fFuncWeight;
323  TH1F* fHistoMCNch;
329 
331  TProfile* fMultEstimatorAvg[4];
342 
344  ClassDef(AliCFTaskVertexingHF,26);
345 };
347 
348 #endif
void SetAcceptanceUnf(Bool_t AcceptanceUnf)
Double_t GetPtWeightFromHistogram(Float_t pt)
void SetCutOnMomConservation(Float_t cut)
Bool_t fUseAdditionalCuts
flag for pPb data (used for multiplicity corrections)
Bool_t fUseZWeight
flag to decide to use a flat pt shape
AliCFTaskVertexingHF & operator=(const AliCFTaskVertexingHF &c)
void SetWeightFunction(TF1 *func)
Bool_t fFillFromGenerated
decay channel to configure the task
void SetRejectCandidateIfNotFromQuark(Bool_t opt)
Double_t GetWeight(Float_t pt)
double Double_t
Definition: External.C:58
void SetMultiplVsZProfileLHC10e(TProfile *hprof)
Int_t fCountAcc
MC particle found in limited acceptance that doesn&#39;t satisfy acceptance cuts.
Bool_t GetUseZWeight() const
Int_t fCountRefit
Reco particle found that satisfy vertex constrained.
void SetCFManager(AliCFManager *io)
CORRECTION FRAMEWORK RELATED FUNCTIONS.
Int_t fCountReco
Reco particle found that satisfy kTPCrefit and kITSrefit.
UInt_t fPDGcode
flag to use selection bit
Class for HF corrections as a function of many variables and step.
void SetFillMinimumSteps(Bool_t FillMinimumSteps)
Double_t ComputeTPCq2(AliAODEvent *aod, AliAODMCHeader *mcHeader, Double_t etamin, Double_t etamax, Double_t ptmin, Double_t ptmax) const
UInt_t GetResonantDecay() const
Int_t fCountGenLimAcc
MC particle found.
Bool_t fIsPPbData
flag for pp data (not checking centrality)
void SetPtWeightsFromD0Cent080dataModOhoverLHC16i2abc()
void SetDecayChannel(Int_t decayChannel)
TH1F * fHistoPtWeight
user-defined function to be used to calculate weights
TH1F * GetWeightHistogram() const
Bool_t fUseSelectionBit
Lc->V0+bachelor decay option (generation level)
char Char_t
Definition: External.C:18
Bool_t GetUseFlatPtWeight() const
AliCFTaskVertexingHF()
multiplicity estimators
Int_t fCountRecoITSClusters
Reco particle found that satisfy cuts in requested acceptance.
void SetFillFromGenerated(Bool_t flag)
get corr manager
Int_t fNvar
flag to use directly the ratio of the distributions (fHistoMCNch) instead of computing it ...
void SetUseNchTrackletsWeight(Bool_t useWeight=kTRUE)
void SetUseMCVertex(Bool_t opt)
TCanvas * c
Definition: TestFitELoss.C:172
Int_t fGenLctoV0bachelorOption
Lc->V0+bachelor decay option (selection level)
void SetUseAdditionalCuts(Bool_t flag)
super fast configuration, only (pt,y,centrality)
Double_t GetZWeight(Float_t z, Int_t runnumber)
void SetPtWeightsFromFONLL276andBAMPSoverLHC12a17b()
Bool_t GetCutOnMomConservation() const
Int_t fCountGenLimAccNoAcc
MC particle found in limited acceptance.
Bool_t GetUseSelectionBit() const
Double_t dNdptFit(Float_t pt, Double_t *par)
Bool_t GetUseCutsForTMVA() const
TString fPartName
number of variables for the container
Bool_t GetUseNchTrackletsWeight() const
all decays (resonant + non-resonant)
void SetUseSelectionBit(Bool_t flag)
void SetUseRatioMultiplicityDistributionsAsWeight(Bool_t flag=kTRUE)
Double_t fRefMult
TProfile with mult vas. Z per period.
Bool_t ProcessDs(Int_t returnCodeDs) const
Float_t fCutOnMomConservation
Skip filling the unneed steps for most of the analyses to save disk space.
Bool_t fZvtxCorrectedNtrkEstimator
refrence multiplcity (period b)
TList * fListProfiles
response matrix for unfolding
const Double_t etamin
Bool_t GetFillMinimumSteps() const
Bool_t fAcceptanceUnf
flag to select D0 origins. 0 Only from charm 1 only from beauty 2 both from charm and beauty ...
Bool_t fUseTrackletsWeight
flag to decide whether to use Ncharged weights != 1 when filling the container or not ...
int Int_t
Definition: External.C:63
Int_t fCountVertex
MC particle found that satisfy acceptance cuts.
Definition: External.C:204
void SetMeasuredNchHisto(TH1F *h)
void SetResonantDecay(UInt_t resonantDecay)
void SetIsPPData(Bool_t flag)
unsigned int UInt_t
Definition: External.C:33
float Float_t
Definition: External.C:68
Double_t DodzFit(Float_t z, Double_t *par)
Bool_t fUseCascadeTaskForLctoV0bachelor
these are the pre-selection cuts for the TMVA
const Double_t ptmax
void SetIsPPbData(Bool_t flag)
Double_t GetNchWeight(Int_t nch)
void SetCentralitySelection(Bool_t centSelec=kTRUE)
UShort_t fOriginDselection
flag to indicate whether data container should be filled with generated values also for reconstructed...
Bool_t fUseFlatPtWeight
weight used to fill the container
Char_t fSign
daughter in fin state
const Double_t ptmin
Int_t GetConfiguration() const
AliRDHFCuts * fCuts
flag for unfolding before or after cuts.
Int_t fFakeSelection
flag to switch off the centrality selection
TF1 * fFuncWeight
configuration (slow / fast) of the CF –> different variables will be allocated (all / reduced number...
UInt_t fResonantDecay
histogram with Nch distribution from MC production
AliCFManager * GetCFManager()
global correction manager
Bool_t fCentralitySelection
flag to decide wheter to keep D0 only (0), D0bar only (1), or both D0 and D0bar (2) ...
void SetWeightHistogram(TH1F *histo)
void SetUseCutsForTMVA(Bool_t useCutsForTMVA)
Int_t fCountRecoAcc
Reco particle found that satisfy cuts.
Int_t fGenDsOption
Ds decay option (selection level)
void SetReferenceMultiplcity(Double_t rmu)
void SetUseWeight(Bool_t useWeight)
void SetUseZvtxCorrectedNtrkEstimator(Bool_t flag)
Bool_t fIsPPData
flag to use the z-vtx corrected (if not use uncorrected) multiplicity estimator
Int_t fConfiguration
Ds decay option (generation level)
void SetPtWeightsFromFONLL5andDplusdataoverLHC16i2a()
Bool_t GetUseAdditionalCuts() const
void SetConfiguration(Int_t configuration)
void SetDselection(UShort_t originDselection)
Int_t fLctoV0bachelorOption
resonant deacy channel to be used if the CF should be run on resonant channels only ...
Bool_t fRejectIfNoQuark
selection flag for fakes tracks
void SetPtWeightsFromD0Cent080dataModMartinezoverLHC16i2abc()
TH1I * fHistEventsProcessed
pointer to the CF manager
Bool_t fFillMinimumSteps
flag to define which task to use for Lc –> K0S+p
TString fDauNames
D meson name.
Int_t fCountRecoPID
Reco particle found that satisfy cuts in PPR.
Bool_t GetUseRatioMultiplicityDistributionsAsWeight() const
const Double_t etamax
Bool_t fUseMultRatioAsWeight
flag to decide whether to use Ncharged weights != 1 when filling the container or not ...
TF1 * GetWeightFunction() const
void SetUseNchWeight(Bool_t useWeight)
void SetUseFlatPtWeight(Bool_t useWeight)
Int_t fEvents
Reco PID step.
void SetCorrelationMatrix(THnSparse *h)
UNFOLDING.
unsigned short UShort_t
Definition: External.C:28
Bool_t GetAcceptanceUnf() const
Bool_t fUseCutsForTMVA
flag to use additional cuts needed for Lc –> K0S + p, TMVA
void SetMultiplVsZProfileLHC10b(TProfile *hprof)
Int_t fDecayChannel
n. of events
const char Option_t
Definition: External.C:48
void SetMultiplVsZProfileLHC10d(TProfile *hprof)
void UserExec(Option_t *option)
Int_t fCountRecoPPR
Reco particle found that satisfy cuts in n. of ITS clusters.
void SetSign(Char_t isSign)
Bool_t GetUseNchWeight() const
Bool_t fUseMCVertex
flag to remove events not geenrated with PYTHIA
Bool_t GetUseWeight() const
bool Bool_t
Definition: External.C:53
void SetMultiplicityEstimator(Int_t value)
slow configuration, all variables
Int_t fDsOption
flag to use MC vertex (useful when runnign in pp)
Bool_t fUseNchWeight
flag to decide whether to use z-vtx weights != 1 when filling the container or not ...
Bool_t GetUseCascadeTaskForLctoV0bachelor() const
void SetMultiplVsZProfileLHC13b(TProfile *hprof)
Class to compute variables for correction framework // for 3-body decays of D mesons (D+...
Bool_t GetFillFromGenerated() const
void SetMultiplVsZProfileLHC13c(TProfile *hprof)
TProfile * GetEstimatorHistogram(const AliVEvent *event)
void SetFakeSelection(Int_t fakeSel=0)
Int_t fMultiplicityEstimator
PDG code.
void UserCreateOutputObjects()
ANALYSIS FRAMEWORK STUFF to loop on data and fill output objects.
TH1F * fHistoMCNch
histogram with measured Nch distribution (pp 7 TeV)
TProfile * fMultEstimatorAvg[4]
Definition of the multiplicity estimator: kNtrk10=0, kNtrk10to16=1, kVZERO=2.
Double_t fWeight
flag to decide whether to use pt-weights != 1 when filling the container or not
TH1F * fHistoMeasNch
user-defined histogram to calculate the Pt weights
Bool_t ProcessLctoV0Bachelor(Int_t returnCodeDs) const
void SetUseCascadeTaskForLctoV0bachelor(Bool_t useCascadeTaskForLctoV0bachelor)
void SetUseZWeight(Bool_t useWeight)
fast configuration, only a subset of variables
void SetMultiplVsZProfileLHC10c(TProfile *hprof)