]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/vertexingHF/macros/AddTaskCFVertexingHF3Prong.C
PWGHFbase converted to native cmake
[u/mrichter/AliRoot.git] / PWGHF / vertexingHF / macros / AddTaskCFVertexingHF3Prong.C
CommitLineData
85e55da4 1//DEFINITION OF A FEW CONSTANTS
ec5288c3 2const Double_t ymin = -1.2 ;
3const Double_t ymax = 1.2 ;
4const Double_t cosmin = -0.7;
85e55da4 5const Double_t cosmax = 1.05;
6const Double_t cTmin = 0; // micron
7const Double_t cTmax = 500; // micron
85e55da4 8const Double_t phimin = 0.0;
85e55da4 9const Int_t mintrackrefsTPC = 2 ;
10const Int_t mintrackrefsITS = 3 ;
11const Int_t charge = 1 ;
85e55da4 12const Int_t minclustersTPC = 50 ;
13// cuts
14const Double_t ptmin = 0.1;
15const Double_t ptmax = 9999.;
16const Double_t etamin = -0.9;
17const Double_t etamax = 0.9;
ec5288c3 18const Double_t zvtxmin = -15;
19const Double_t zvtxmax = 15;
85e55da4 20const Int_t minITSClusters = 5;
21
ec5288c3 22const Float_t centmin_0_10 = 0.;
23const Float_t centmax_0_10 = 10.;
ad02b758 24const Float_t centmin_10_60 = 10.;
25const Float_t centmax_10_60 = 60.;
26const Float_t centmin_60_100 = 60.;
27const Float_t centmax_60_100 = 100.;
b7af2639 28const Float_t centmax = 100.;
1f780958 29const Float_t fakemin = -0.5;
30const Float_t fakemax = 2.5.;
ec5288c3 31const Float_t cosminXY = 0.95;
32const Float_t cosmaxXY = 1.0;
33const Float_t normDecLXYmin = 0;
34const Float_t normDecLXYmax = 20;
35const Float_t multmin_0_20 = 0;
36const Float_t multmax_0_20 = 20;
37const Float_t multmin_20_50 = 20;
38const Float_t multmax_20_50 = 50;
fd25e7aa 39const Float_t multmin_50_80 = 50;
40const Float_t multmax_50_80 = 80;
41const Float_t multmin_80_100 = 80;
42const Float_t multmax_80_100 = 100;
43const Float_t multmin_100_400 = 100;
44const Float_t multmax_100_400 = 400;
45
1f780958 46
b7af2639 47
85e55da4 48//----------------------------------------------------
49
c9d2246a 50AliCFTaskVertexingHF *AddTaskCFVertexingHF3Prong(TString suffixName="", const char* cutFile = "./DplustoKpipiCuts.root", Int_t configuration = AliCFTaskVertexingHF::kCheetah, Bool_t isKeepDfromB=kFALSE, Bool_t isKeepDfromBOnly=kFALSE, Int_t pdgCode = 411, Char_t isSign = 2, Bool_t useWeight=kFALSE, TString multFile="", Bool_t useNchWeight=kFALSE, Bool_t useNtrkWeight=kFALSE, TString estimatorFilename="", Int_t multiplicityEstimator = AliCFTaskVertexingHF::kNtrk10, Bool_t isPPbData = kFALSE, Double_t refMult=9.26, Bool_t isFineNtrkBin=kFALSE)
ec5288c3 51//AliCFContainer *AddTaskCFVertexingHF3Prong(const char* cutFile = "./DplustoKpipiCuts.root", Int_t configuration = AliCFTaskVertexingHF::kSnail, Bool_t isKeepDfromB=kFALSE, Bool_t isKeepDfromBOnly=kFALSE, Int_t pdgCode = 411, Char_t isSign = 2)
85e55da4 52{
53 printf("Addig CF task using cuts from file %s\n",cutFile);
ec5288c3 54 if (configuration == AliCFTaskVertexingHF::kSnail){
55 printf("The configuration is set to be SLOW --> all the variables will be used to fill the CF\n");
56 }
57 else if (configuration == AliCFTaskVertexingHF::kCheetah){
58 printf("The configuration is set to be FAST --> using only pt, y, ct, phi, zvtx, centrality, fake, multiplicity to fill the CF\n");
59 }
60 else{
61 printf("The configuration is not defined! returning\n");
62 return;
63 }
64
65 gSystem->Sleep(2000);
85e55da4 66
a147e835 67 // isSign = 0 --> D+ only
68 // isSign = 1 --> D- only
69 // isSign = 2 --> both
3ee5eb83 70
71 TString expected;
4e6f4183 72 if (isSign == 0 && pdgCode < 0){
3ee5eb83 73 AliError(Form("Error setting PDG code (%d) and sign (0 --> particle (%d) only): they are not compatible, returning",pdgCode));
74 return 0x0;
75 }
4e6f4183 76 else if (isSign == 1 && pdgCode > 0){
3ee5eb83 77 AliError(Form("Error setting PDG code (%d) and sign (1 --> antiparticle (%d) only): they are not compatible, returning",pdgCode));
78 return 0x0;
79 }
80 else if (isSign > 2 || isSign < 0){
81 AliError(Form("Sign not valid (%d, possible values are 0, 1, 2), returning"));
82 return 0x0;
83 }
84
01e9725a 85 TFile* fileCuts = TFile::Open(cutFile);
e693cb03 86 if(!fileCuts || (fileCuts && !fileCuts->IsOpen())){
f4fb19b2 87 AliFatal(" Cut file not found");
e693cb03 88 return 0x0;
89 }
654ef521 90 AliRDHFCutsDplustoKpipi *cutsDplustoKpipi = (AliRDHFCutsDplustoKpipi*)fileCuts->Get("AnalysisCuts");
19560d8c 91 TH1F *hMult=0x0;
92 if(multFile.EqualTo("") ) {
93 printf("Will not be corrected with weights \n");
94 }else{
95 TFile *fileMult = TFile::Open(multFile.Data());
0c34e470 96 if(isPPbData) hMult = (TH1F*)fileMult->Get("hNtrUnCorrEvWithCandWeight");
97 else {
986ba7e3 98 hMult=(TH1F*)fileMult->Get("hGenPrimaryParticlesInelGt0");
0c34e470 99 }
19560d8c 100 }
85e55da4 101
102 // check that the fKeepD0fromB flag is set to true when the fKeepD0fromBOnly flag is true
103 // for now the binning is the same than for all D's
104 if(isKeepDfromBOnly) isKeepDfromB = true;
105
85e55da4 106 /*
107 Double_t ptmin_0_4;
108 Double_t ptmax_0_4;
109 Double_t ptmin_4_8;
110 Double_t ptmax_4_8;
111 Double_t ptmin_8_10;
112 Double_t ptmax_8_10;
113
114 if(!isKeepDfromB){
115 ptmin_0_4 = 0.0 ;
116 ptmax_0_4 = 4.0 ;
117 ptmin_4_8 = 4.0 ;
118 ptmax_4_8 = 8.0 ;
119 ptmin_8_10 = 8.0 ;
120 ptmax_8_10 = 10.0 ;
121 } else{
122 ptmin_0_4 = 0.0 ;
123 ptmax_0_4 = 3.0 ;
124 ptmin_4_8 = 3.0 ;
125 ptmax_4_8 = 5.0 ;
126 ptmin_8_10 = 5.0 ;
127 ptmax_8_10 = 10.0 ;
128 }
129 */
130
131 //CONTAINER DEFINITION
132 Info("AliCFTaskVertexingHF","SETUP CONTAINER");
85e55da4 133
134 const Double_t phimax = 2*TMath::Pi();
135
136 //Setting up the container grid...
137 UInt_t nstep = 10; //number of selection steps: MC with limited acceptance, MC, Acceptance, Vertex, Refit, Reco (no cuts), RecoAcceptance, RecoITSClusters (RecoAcceptance included), RecoPPR (RecoAcceptance+RecoITSCluster included), RecoPID
ec5288c3 138// const Int_t nbinpt_0_4 = 8 ; //bins in pt from 0 to 4 GeV
139// const Int_t nbinpt_4_8 = 4 ; //bins in pt from 4 to 8 GeV
140// const Int_t nbinpt_8_10 = 1 ; //bins in pt from 8 to 10 GeV
85e55da4 141
142/*
ec5288c3 143 Int_t nbinpt_0_4;
144 Int_t nbinpt_4_8;
145 Int_t nbinpt_8_10;
85e55da4 146 if (!isKeepDfromB){
ec5288c3 147 nbinpt_0_4 = 8 ; //bins in pt from 0 to 4 GeV
148 nbinpt_4_8 = 4 ; //bins in pt from 4 to 8 GeV
149 nbinpt_8_10 = 1 ; //bins in pt from 8 to 10 GeV
85e55da4 150 }else{
ec5288c3 151 nbinpt_0_4 = 3 ; //bins in pt from 0 to 3 GeV
152 nbinpt_4_8 = 1 ; //bins in pt from 3 to 5 GeV
153 nbinpt_8_10 = 1 ; //bins in pt from 5 to 10 GeV
85e55da4 154 }
155*/
ec5288c3 156 const Int_t nbinpt = cutsDplustoKpipi->GetNPtBins(); // bins in pT
157 printf("pT: nbin (from cuts file) = %d\n",nbinpt);
158 const Int_t nbiny = 24 ; //bins in y
159 const Int_t nbinphi = 18 ; //bins in phi
48c550ce 160 const Int_t nbincT = 2 ; //bins in cT
161 const Int_t nbinpointing = 35 ; //bins in cosPointingAngle
ec5288c3 162 const Int_t nbinpTpi_0_4 = 8 ; //bins in ptPi from 0 to 4 GeV
163 const Int_t nbinpTpi_4_8 = 4 ; //bins in ptPi from 4 to 8 GeV
164 const Int_t nbinpTpi_8_10 = 1 ; //bins in ptPi from 8 to 10 GeV
165 const Int_t nbinpTk_0_4 = 8 ; //bins in ptKa from 0 to 4 GeV
166 const Int_t nbinpTk_4_8 = 4 ; //bins in ptKa from 4 to 8 GeV
167 const Int_t nbinpTk_8_10 = 1 ; //bins in ptKa from 8 to 10 GeV
168 const Int_t nbinpTpi2_0_4 = 8 ; //bins in ptpi2 from 0 to 4 GeV
169 const Int_t nbinpTpi2_4_8 = 4 ; //bins in ptpi2 from 4 to 8 GeV
170 const Int_t nbinpTpi2_8_10 = 1 ; //bins in ptpi2 from 8 to 10 GeV
171 const Int_t nbinzvtx = 30 ; //bins in z vertex
ad02b758 172 const Int_t nbincent = 18; //bins in centrality
173 const Int_t nbincent_0_10 = 4; //bins in centrality between 0 and 10
174 const Int_t nbincent_10_60 = 10; //bins in centrality between 10 and 60
175 const Int_t nbincent_60_100 = 4; //bins in centrality between 60 and 100
ec5288c3 176 const Int_t nbinfake = 3; //bins in fake
177 const Int_t nbinpointingXY = 50; //bins in cosPointingAngleXY
178 const Int_t nbinnormDecayLXY = 20; //bins in NormDecayLengthXY
fd25e7aa 179 const Int_t nbinmult = 49; //bins in multiplicity (total number)
ec5288c3 180 const Int_t nbinmult_0_20 = 20; //bins in multiplicity between 0 and 20
181 const Int_t nbinmult_20_50 = 15; //bins in multiplicity between 20 and 50
fd25e7aa 182 const Int_t nbinmult_50_80 = 10; //bins in multiplicity between 50 and 80
183 const Int_t nbinmult_80_100 = 4; //bins in multiplicity between 80 and 100
184 const Int_t nbinmult_100_400 = 3; //bins in multiplicity between 100 and 400
185 if(isPPbData) nbinmult += nbinmult_100_400;
0c34e470 186
187 // Fine Ntrk bining setting
188 Double_t *binLimmultFine;
189 Int_t nbinmultTmp=nbinmult;
190 if(isFineNtrkBin){
191 Int_t nbinLimmultFine=100;
192 if(isPPbData) nbinLimmultFine = 200;
193 const UInt_t nbinMultFine = nbinLimmultFine;
194 binLimmultFine = new Double_t[nbinMultFine+1];
195 for (Int_t ibin0 = 0 ; ibin0<nbinMultFine+1; ibin0++){
196 binLimmultFine[ibin0] = ibin0;
197 }
198 nbinmultTmp=nbinLimmultFine;
199 }
200 const Int_t nbinmultTot=nbinmultTmp;
201
202
ec5288c3 203 //the sensitive variables, their indices
204 const UInt_t ipT = 0;
205 const UInt_t iy = 1;
206 const UInt_t iphi = 2;
207 const UInt_t icT = 3;
208 const UInt_t ipointing = 4;
209 const UInt_t ipTpi = 5;
210 const UInt_t ipTk = 6;
211 const UInt_t ipTpi2 = 7;
212 const UInt_t izvtx = 8;
213 const UInt_t icent = 9;
214 const UInt_t ifake = 10;
215 const UInt_t ipointingXY = 11;
216 const UInt_t inormDecayLXY = 12;
217 const UInt_t imult = 13;
218
219 const Int_t nvarTot = 14 ; //number of variables on the grid:pt, y, cosThetaStar, pTpi, pTk, cT, dca, d0pi, d0K, d0xd0, cosPointingAngle, phi, zvtx, centrality, fake, cosPointingAngleXY, normDecayLengthXY, multiplicity
220
85e55da4 221 //arrays for the number of bins in each dimension
ec5288c3 222 Int_t iBin[nvarTot];
223 //iBin[ipT]=nbinpt_0_4+nbinpt_4_8+nbinpt_8_10;
224 iBin[ipT]=nbinpt;
225 iBin[iy]=nbiny;
226 iBin[iphi]=nbinphi;
227 // iBin[icT]=nbincT_0_4+nbincT_4_8+nbincT_8_10;
228 //iBin[4]=nbinpointing_0_4+nbinpointing_4_8+nbinpointing_8_10;
229 iBin[icT]=nbincT;
230 iBin[ipointing]=nbinpointing;
231 iBin[ipTpi]=nbinpt;
232 iBin[ipTk]=nbinpt;
233 iBin[ipTpi2]=nbinpt;
234 iBin[izvtx]=nbinzvtx;
235 iBin[icent]=nbincent;
236 iBin[ifake]=nbinfake;
237 iBin[ipointingXY]=nbinpointingXY;
238 iBin[inormDecayLXY]=nbinnormDecayLXY;
0c34e470 239 iBin[imult]=nbinmultTot;
85e55da4 240
241 //arrays for lower bounds :
ec5288c3 242 Double_t *binLimpT=new Double_t[iBin[ipT]+1];
243 Double_t *binLimy=new Double_t[iBin[iy]+1];
244 Double_t *binLimphi=new Double_t[iBin[iphi]+1];
245 Double_t *binLimcT=new Double_t[iBin[icT]+1];
246 Double_t *binLimpointing=new Double_t[iBin[ipointing]+1];
247 Double_t *binLimpTpi=new Double_t[iBin[ipTpi]+1];
248 Double_t *binLimpTk=new Double_t[iBin[ipTk]+1];
249 Double_t *binLimpTpi2=new Double_t[iBin[ipTpi2]+1];
250 Double_t *binLimzvtx=new Double_t[iBin[izvtx]+1];
251 Double_t *binLimcent=new Double_t[iBin[icent]+1];
252 Double_t *binLimfake=new Double_t[iBin[ifake]+1];
253 Double_t *binLimpointingXY=new Double_t[iBin[ipointingXY]+1];
254 Double_t *binLimnormDecayLXY=new Double_t[iBin[inormDecayLXY]+1];
255 Double_t *binLimmult=new Double_t[iBin[imult]+1];
256
85e55da4 257 // checking limits
258 /*
ec5288c3 259 if (ptmax_0_4 != ptmin_4_8) {
260 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","max lim 1st range != min lim 2nd range, please check!");
261 }
262 if (ptmax_4_8 != ptmin_8_10) {
263 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","max lim 2nd range != min lim 3rd range, please check!");
264 }
85e55da4 265 */
266 // values for bin lower bounds
267 // pt
ec5288c3 268 Float_t* floatbinLimpT = cutsDplustoKpipi->GetPtBinLimits();
269 for (Int_t ibinpT = 0 ; ibinpT<iBin[ipT]+1; ibinpT++){
270 binLimpT[ibinpT] = (Double_t)floatbinLimpT[ibinpT];
271 binLimpTpi[ibinpT] = (Double_t)floatbinLimpT[ibinpT];
272 binLimpTk[ibinpT] = (Double_t)floatbinLimpT[ibinpT];
273 binLimpTpi2[ibinpT] = (Double_t)floatbinLimpT[ibinpT];
85e55da4 274 }
ec5288c3 275 for(Int_t i=0; i<=nbinpt; i++) printf("binLimpT[%d]=%f\n",i,binLimpT[i]);
276
85e55da4 277 /*
ec5288c3 278 for(Int_t i=0; i<=nbinpt_0_4; i++) binLimpT[i]=(Double_t)ptmin_0_4 + (ptmax_0_4-ptmin_0_4)/nbinpt_0_4*(Double_t)i ;
279 if (binLimpT[nbinpt_0_4] != ptmin_4_8) {
280 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for pt - 1st range - differs from expected!\n");
281 }
282 for(Int_t i=0; i<=nbinpt_4_8; i++) binLimpT[i+nbinpt_0_4]=(Double_t)ptmin_4_8 + (ptmax_4_8-ptmin_4_8)/nbinpt_4_8*(Double_t)i ;
283 if (binLimpT[nbinpt_0_4+nbinpt_4_8] != ptmin_8_10) {
284 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for pt - 2nd range - differs from expected!\n");
285 }
286 for(Int_t i=0; i<=nbinpt_8_10; i++) binLimpT[i+nbinpt_0_4+nbinpt_4_8]=(Double_t)ptmin_8_10 + (ptmax_8_10-ptmin_8_10)/nbinpt_8_10*(Double_t)i ;
85e55da4 287 */
ec5288c3 288
85e55da4 289 // y
ec5288c3 290 for(Int_t i=0; i<=nbiny; i++) binLimy[i]=(Double_t)ymin + (ymax-ymin) /nbiny*(Double_t)i ;
291
85e55da4 292 // Phi
ec5288c3 293 for(Int_t i=0; i<=nbinphi; i++) binLimphi[i]=(Double_t)phimin + (phimax-phimin) /nbinphi*(Double_t)i ;
294
85e55da4 295 // cT
ec5288c3 296 for(Int_t i=0; i<=nbincT; i++) binLimcT[i]=(Double_t)cTmin + (cTmax-cTmin) /nbincT*(Double_t)i ;
297
85e55da4 298 // cosPointingAngle
ec5288c3 299 for(Int_t i=0; i<=nbinpointing; i++) binLimpointing[i]=(Double_t)cosmin + (cosmax-cosmin) /nbinpointing*(Double_t)i ;
85e55da4 300
301 /*
302 // ptPi
ec5288c3 303 for(Int_t i=0; i<=nbincT_0_4; i++) binLimcT[i]=(Double_t)ptmin_0_4 + (ptmax_0_4-ptmin_0_4)/nbincT_0_4*(Double_t)i ;
304 if (binLimcT[nbincT_0_4] != ptmin_4_8) {
305 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for ptPi - 1st range - differs from expected!");
85e55da4 306 }
ec5288c3 307 for(Int_t i=0; i<=nbincT_4_8; i++) binLimcT[i+nbincT_0_4]=(Double_t)ptmin_4_8 + (ptmax_4_8-ptmin_4_8)/nbincT_4_8*(Double_t)i ;
308 if (binLimcT[nbincT_0_4+nbincT_4_8] != ptmin_8_10) {
309 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for ptPi - 2nd range - differs from expected!\n");
85e55da4 310 }
ec5288c3 311 for(Int_t i=0; i<=nbincT_8_10; i++) binLimcT[i+nbincT_0_4+nbincT_4_8]=(Double_t)ptmin_8_10 + (ptmax_8_10-ptmin_8_10)/nbincT_8_10*(Double_t)i ;
312
85e55da4 313 // ptKa
ec5288c3 314 for(Int_t i=0; i<=nbinpointing_0_4; i++) binLimpointing[i]=(Double_t)ptmin_0_4 + (ptmax_0_4-ptmin_0_4)/nbinpointing_0_4*(Double_t)i ;
315 if (binLimpointing[nbinpointing_0_4] != ptmin_4_8) {
316 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for ptKa - 1st range - differs from expected!");
85e55da4 317 }
ec5288c3 318 for(Int_t i=0; i<=nbinpointing_4_8; i++) binLimpointing[i+nbinpointing_0_4]=(Double_t)ptmin_4_8 + (ptmax_4_8-ptmin_4_8)/nbinpointing_4_8*(Double_t)i ;
319 if (binLimpointing[nbinpointing_0_4+nbinpointing_4_8] != ptmin_8_10) {
320 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for ptKa - 2nd range - differs from expected!\n");
85e55da4 321 }
ec5288c3 322 for(Int_t i=0; i<=nbinpointing_8_10; i++) binLimpointing[i+nbinpointing_0_4+nbinpointing_4_8]=(Double_t)ptmin_8_10 + (ptmax_8_10-ptmin_8_10)/nbinpointing_8_10*(Double_t)i ;
85e55da4 323 */
ec5288c3 324
85e55da4 325 // z Primary Vertex
ec5288c3 326 for(Int_t i=0; i<=nbinzvtx; i++) {
327 binLimzvtx[i]=(Double_t)zvtxmin + (zvtxmax-zvtxmin) /nbinzvtx*(Double_t)i ;
85e55da4 328 }
ec5288c3 329
1f780958 330 // centrality
ad02b758 331
ec5288c3 332 for(Int_t i=0; i<=nbincent_0_10; i++) binLimcent[i]=(Double_t)centmin_0_10 + (centmax_0_10-centmin_0_10)/nbincent_0_10*(Double_t)i ;
ad02b758 333 if (binLimcent[nbincent_0_10] != centmin_10_60) {
334 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for cent - 1st range - differs from expected!\n");
b7af2639 335 }
ad02b758 336 for(Int_t i=0; i<=nbincent_10_60; i++) binLimcent[i+nbincent_0_10]=(Double_t)centmin_10_60 + (centmax_10_60-centmin_10_60)/nbincent_10_60*(Double_t)i ;
337 if (binLimcent[nbincent_0_10+nbincent_10_60] != centmin_60_100) {
338 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for cent - 2st range - differs from expected!\n");
339 }
4c4ad34c 340 for(Int_t i=0; i<=nbincent_60_100; i++) binLimcent[i+nbincent_0_10+nbincent_10_60]=(Double_t)centmin_60_100 + (centmax_60_100-centmin_60_100)/nbincent_60_100*(Double_t)i ;
ec5288c3 341
1f780958 342 // fake
ec5288c3 343 for(Int_t i=0; i<=nbinfake; i++) {
344 binLimfake[i]=(Double_t)fakemin + (fakemax-fakemin)/nbinfake * (Double_t)i;
1f780958 345 }
346
ec5288c3 347 // cosPointingAngleXY
348 for(Int_t i=0; i<=nbinpointingXY; i++) binLimpointingXY[i]=(Double_t)cosminXY + (cosmaxXY-cosminXY) /nbinpointingXY*(Double_t)i ;
b7af2639 349
ec5288c3 350 // normDecayLXY
351 for(Int_t i=0; i<=nbinnormDecayLXY; i++) binLimnormDecayLXY[i]=(Double_t)normDecLXYmin + (normDecLXYmax-normDecLXYmin) /nbinnormDecayLXY*(Double_t)i ;
85e55da4 352
ec5288c3 353 // multiplicity
fd25e7aa 354 for(Int_t i=0; i<=nbinmult_0_20; i++) binLimmult[i]=(Double_t)multmin_0_20 + (multmax_0_20-multmin_0_20)/nbinmult_0_20*(Double_t)i ;
355 if (binLimmult[nbinmult_0_20] != multmin_20_50) {
356 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for mult - 1st range - differs from expected!\n");
357 }
358 for(Int_t i=0; i<=nbinmult_20_50; i++) binLimmult[i+nbinmult_0_20]=(Double_t)multmin_20_50 + (multmax_20_50-multmin_20_50)/nbinmult_20_50*(Double_t)i ;
359 if (binLimmult[nbinmult_0_20+nbinmult_20_50] != multmin_50_80) {
360 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for mult - 2nd range - differs from expected!\n");
361 }
362 for(Int_t i=0; i<=nbinmult_50_80; i++) binLimmult[i+nbinmult_0_20+nbinmult_20_50]=(Double_t)multmin_50_80 + (multmax_50_80-multmin_50_80)/nbinmult_50_80*(Double_t)i ;
363 if (binLimmult[nbinmult_0_20+nbinmult_20_50+nbinmult_50_80] != multmin_80_100) {
364 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for mult - 3rd range - differs from expected!\n");
365 }
366 for(Int_t i=0; i<=nbinmult_80_100; i++) binLimmult[i+nbinmult_0_20+nbinmult_20_50+nbinmult_50_80]=(Double_t)multmin_80_100 + (multmax_80_100-multmin_80_100)/nbinmult_80_100*(Double_t)i ;
367 if (binLimmult[nbinmult_0_20+nbinmult_20_50+nbinmult_50_80+nbinmult_80_100] != multmin_100_400) {
368 Error("AliCFHeavyFlavourTaskMultiVarMultiStep","Calculated bin lim for mult - 4th range - differs from expected!\n");
369 }
370 if(isPPbData){
371 for (Int_t i = 0; i<=nbinmult_100_400; i++) binLimmult[i+nbinmult_0_20+nbinmult_20_50+nbinmult_50_80+nbinmult_80_100]= (Double_t)multmin_100_400 + (multmax_100_400-multmin_100_400)/nbinmult_100_400*(Double_t)i ;
372 }
373
85e55da4 374 //one "container" for MC
375 TString nameContainer="";
376 if(!isKeepDfromB) {
a147e835 377 nameContainer="CFHFcontainer_DplustoKpipi_Prompt";
f4fb19b2 378
85e55da4 379 }
380 else if(isKeepDfromBOnly){
a147e835 381 nameContainer="CFHFcontainer_DplustoKpipi_FromB";
f4fb19b2 382
85e55da4 383 }
384 else {
a147e835 385 nameContainer="CFHFcontainer_DplustoKpipi_All";
85e55da4 386 }
050ff6a8 387 nameContainer += suffixName.Data();
f4fb19b2 388
85e55da4 389
ec5288c3 390 AliCFContainer* container;
391 if (configuration == AliCFTaskVertexingHF::kSnail){
392 container = new AliCFContainer(nameContainer,"container for tracks",nstep,nvarTot,iBin);
393 //setting the bin limits
394 printf("pt\n");
395 container -> SetBinLimits(ipT,binLimpT);
396 printf("y\n");
397 container -> SetBinLimits(iy,binLimy);
398 printf("Phi\n");
399 container -> SetBinLimits(iphi,binLimphi);
400 printf("cT\n");
401 container -> SetBinLimits(icT,binLimcT);
402 printf("pointing angle\n");
403 container -> SetBinLimits(ipointing,binLimpointing);
404 printf("ptpi\n");
405 container -> SetBinLimits(ipTpi,binLimpTpi);
406 printf("ptK\n");
407 container -> SetBinLimits(ipTk,binLimpTk);
408 printf("ptpi2\n");
409 container -> SetBinLimits(ipTpi2,binLimpTpi2);
410 printf("zvtx \n");
411 container -> SetBinLimits(izvtx,binLimzvtx);
412 printf("cent\n");
413 container -> SetBinLimits(icent,binLimcent);
414 printf("fake\n");
415 container -> SetBinLimits(ifake,binLimfake);
416 printf("pointingXY\n");
417 container -> SetBinLimits(ipointingXY,binLimpointingXY);
418 printf("normDecayLXY\n");
419 container -> SetBinLimits(inormDecayLXY,binLimnormDecayLXY);
420 printf("multiplicity\n");
0c34e470 421 if(isFineNtrkBin) container -> SetBinLimits(imult,binLimmultFine);
422 else container -> SetBinLimits(imult,binLimmult);
ec5288c3 423
424 container -> SetVarTitle(ipT,"pt");
425 container -> SetVarTitle(iy,"y");
426 container -> SetVarTitle(iphi, "phi");
427 container -> SetVarTitle(icT, "ct");
428 container -> SetVarTitle(ipointing, "pointing");
429 container -> SetVarTitle(ipTpi, "ptpi");
430 container -> SetVarTitle(ipTk, "ptK");
431 container -> SetVarTitle(ipTpi2, "ptpi2");
432 container -> SetVarTitle(izvtx, "zvtx");
433 container -> SetVarTitle(icent, "centrality");
434 container -> SetVarTitle(ifake, "fake");
435 container -> SetVarTitle(ipointingXY, "piointingXY");
436 container -> SetVarTitle(inormDecayLXY, "normDecayLXY");
437 container -> SetVarTitle(imult, "multiplicity");
438 }
439 else if (configuration == AliCFTaskVertexingHF::kCheetah){
440 //arrays for the number of bins in each dimension
441 const Int_t nvar = 8;
442
443 const UInt_t ipTFast = 0;
444 const UInt_t iyFast = 1;
445 const UInt_t icTFast = 2;
446 const UInt_t iphiFast = 3;
447 const UInt_t izvtxFast = 4;
448 const UInt_t icentFast = 5;
449 const UInt_t ifakeFast = 6;
450 const UInt_t imultFast = 7;
451
452 Int_t iBinFast[nvar];
453 iBinFast[ipTFast] = iBin[ipT];
454 iBinFast[iyFast] = iBin[iy];
455 iBinFast[icTFast] = iBin[icT];
456 iBinFast[iphiFast] = iBin[iphi];
457 iBinFast[izvtxFast] = iBin[izvtx];
458 iBinFast[icentFast] = iBin[icent];
459 iBinFast[ifakeFast] = iBin[ifake];
460 iBinFast[imultFast] = iBin[imult];
461
462 container = new AliCFContainer(nameContainer,"container for tracks",nstep,nvar,iBinFast);
463 printf("pt\n");
464 container -> SetBinLimits(ipTFast,binLimpT);
465 printf("y\n");
466 container -> SetBinLimits(iyFast,binLimy);
467 printf("ct\n");
468 container -> SetBinLimits(icTFast,binLimcT);
469 printf("phi\n");
470 container -> SetBinLimits(iphiFast,binLimphi);
471 printf("zvtx\n");
472 container -> SetBinLimits(izvtxFast,binLimzvtx);
473 printf("centrality\n");
474 container -> SetBinLimits(icentFast,binLimcent);
475 printf("fake\n");
476 container -> SetBinLimits(ifakeFast,binLimfake);
477 printf("multiplicity\n");
0c34e470 478 if(isFineNtrkBin) container -> SetBinLimits(imultFast,binLimmultFine);
479 else container -> SetBinLimits(imultFast,binLimmult);
ec5288c3 480
481 container -> SetVarTitle(ipTFast,"pt");
482 container -> SetVarTitle(iyFast,"y");
483 container -> SetVarTitle(icTFast, "ct");
484 container -> SetVarTitle(iphiFast, "phi");
485 container -> SetVarTitle(izvtxFast, "zvtx");
486 container -> SetVarTitle(icentFast, "centrality");
487 container -> SetVarTitle(ifakeFast, "fake");
488 container -> SetVarTitle(imultFast, "multiplicity");
489 }
490
491 //return container;
492
85e55da4 493 container -> SetStepTitle(0, "MCLimAcc");
494 container -> SetStepTitle(1, "MC");
495 container -> SetStepTitle(2, "MCAcc");
496 container -> SetStepTitle(3, "RecoVertex");
497 container -> SetStepTitle(4, "RecoRefit");
498 container -> SetStepTitle(5, "Reco");
499 container -> SetStepTitle(6, "RecoAcc");
500 container -> SetStepTitle(7, "RecoITSCluster");
501 container -> SetStepTitle(8, "RecoCuts");
654ef521 502 container -> SetStepTitle(9, "RecoPID");
85e55da4 503
85e55da4 504
505 //CREATE THE CUTS -----------------------------------------------
506
507 // Gen-Level kinematic cuts
508 AliCFTrackKineCuts *mcKineCuts = new AliCFTrackKineCuts("mcKineCuts","MC-level kinematic cuts");
509
510 //Particle-Level cuts:
511 AliCFParticleGenCuts* mcGenCuts = new AliCFParticleGenCuts("mcGenCuts","MC particle generation cuts");
3ee5eb83 512 Bool_t useAbsolute = kTRUE;
513 if (isSign != 2){
514 useAbsolute = kFALSE;
515 }
516 mcGenCuts->SetRequirePdgCode(pdgCode, useAbsolute); // kTRUE set in order to include antiparticle
85e55da4 517 mcGenCuts->SetAODMC(1); //special flag for reading MC in AOD tree (important)
518
519 // Acceptance cuts:
520 AliCFAcceptanceCuts* accCuts = new AliCFAcceptanceCuts("accCuts", "Acceptance cuts");
521 AliCFTrackKineCuts *kineAccCuts = new AliCFTrackKineCuts("kineAccCuts","Kine-Acceptance cuts");
522 kineAccCuts->SetPtRange(ptmin,ptmax);
523 kineAccCuts->SetEtaRange(etamin,etamax);
524
525 // Rec-Level kinematic cuts
526 AliCFTrackKineCuts *recKineCuts = new AliCFTrackKineCuts("recKineCuts","rec-level kine cuts");
527
528 AliCFTrackQualityCuts *recQualityCuts = new AliCFTrackQualityCuts("recQualityCuts","rec-level quality cuts");
529
530 AliCFTrackIsPrimaryCuts *recIsPrimaryCuts = new AliCFTrackIsPrimaryCuts("recIsPrimaryCuts","rec-level isPrimary cuts");
531
532 printf("CREATE MC KINE CUTS\n");
533 TObjArray* mcList = new TObjArray(0) ;
534 mcList->AddLast(mcKineCuts);
535 mcList->AddLast(mcGenCuts);
536
537 printf("CREATE ACCEPTANCE CUTS\n");
538 TObjArray* accList = new TObjArray(0) ;
539 accList->AddLast(kineAccCuts);
540
541 printf("CREATE RECONSTRUCTION CUTS\n");
542 TObjArray* recList = new TObjArray(0) ; // not used!!
543 recList->AddLast(recKineCuts);
544 recList->AddLast(recQualityCuts);
545 recList->AddLast(recIsPrimaryCuts);
546
547 TObjArray* emptyList = new TObjArray(0);
548
549 //CREATE THE INTERFACE TO CORRECTION FRAMEWORK USED IN THE TASK
550 printf("CREATE INTERFACE AND CUTS\n");
551 AliCFManager* man = new AliCFManager() ;
552 man->SetParticleContainer(container);
553 man->SetParticleCutsList(0 , mcList); // MC, Limited Acceptance
554 man->SetParticleCutsList(1 , mcList); // MC
555 man->SetParticleCutsList(2 , accList); // Acceptance
556 man->SetParticleCutsList(3 , emptyList); // Vertex
557 man->SetParticleCutsList(4 , emptyList); // Refit
558 man->SetParticleCutsList(5 , emptyList); // AOD
559 man->SetParticleCutsList(6 , emptyList); // AOD in Acceptance
560 man->SetParticleCutsList(7 , emptyList); // AOD with required n. of ITS clusters
561 man->SetParticleCutsList(8 , emptyList); // AOD Reco (PPR cuts implemented in Task)
562 man->SetParticleCutsList(9 , emptyList); // AOD Reco PID
563
564 // Get the pointer to the existing analysis manager via the static access method.
565 //==============================================================================
566 AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
567 if (!mgr) {
568 ::Error("AddTaskCompareHF", "No analysis manager to connect to.");
569 return NULL;
570 }
571 //CREATE THE TASK
572 printf("CREATE TASK\n");
573
574 // create the task
575 AliCFTaskVertexingHF *task = new AliCFTaskVertexingHF("AliCFTaskVertexingHF",cutsDplustoKpipi);
3ee5eb83 576 task->SetFillFromGenerated(kFALSE);
85e55da4 577 task->SetDecayChannel(31);
b09dbb93 578 task->SetUseWeight(useWeight);
85e55da4 579 task->SetCFManager(man); //here is set the CF manager
3ee5eb83 580 task->SetSign(isSign);
654ef521 581 task->SetCentralitySelection(kFALSE);
582 task->SetFakeSelection(0);
0ada222f 583 task->SetRejectCandidateIfNotFromQuark(kTRUE); // put to false if you want to keep HIJING D0!!
584 task->SetUseMCVertex(kFALSE); // put to true if you want to do studies on pp
19560d8c 585 task->SetUseNchWeight(useNchWeight); //correction with mult weight
0c34e470 586 if(useNchWeight || useNtrkWeight){
19560d8c 587 if(hMult) task->SetMCNchHisto(hMult);
588 else{
589 AliFatal("Histogram for multiplicity weights not found");
590 return 0x0;
591 }
0c34e470 592 task->SetUseNchWeight(kTRUE);
593 if(useNtrkWeight) task->SetUseNchTrackletsWeight();
594 }
595 if(isPPbData) {
596 task->SetIsPPbData(kTRUE);
58744a23 597 }
3ee5eb83 598 if (isKeepDfromB && !isKeepDfromBOnly) task->SetDselection(2);
599 if (isKeepDfromB && isKeepDfromBOnly) task->SetDselection(1);
85e55da4 600
5b37c6e5 601 TF1* funcWeight = 0x0;
602 if (task->GetUseWeight()) {
603 funcWeight = (TF1*)cutFile->Get("funcWeight");
604 if (funcWeight == 0x0){
605 Printf("FONLL Weights will be used");
606 }
607 else {
608 task->SetWeightFunction(funcWeight);
609 Printf("User-defined Weights will be used. The function being:");
610 task->GetWeightFunction()->Print();
611 }
612 }
613
fd25e7aa 614 task->SetMultiplicityEstimator(multiplicityEstimator);
615 if(estimatorFilename.EqualTo("") ) {
616 printf("Estimator file not provided, multiplicity corrected histograms will not be filled\n");
617 task->SetUseZvtxCorrectedNtrkEstimator(kFALSE);
618 } else{
619 TFile* fileEstimator=TFile::Open(estimatorFilename.Data());
620 if(!fileEstimator) {
621 AliFatal("File with multiplicity estimator not found");
622 return;
623 }
624 task->SetUseZvtxCorrectedNtrkEstimator(kTRUE);
625 task->SetReferenceMultiplcity(refMult);
626
627 if (isPPbData) { //load multiplicity estimators for pPb
628 const Char_t* periodNames[2] = {"LHC13b", "LHC13c"};
629 TProfile *multEstimatorAvg[2];
630 for (Int_t ip=0; ip < 2; ip++) {
631 multEstimatorAvg[ip] = (TProfile*)(fileEstimator->Get(Form("SPDmult10_%s",periodNames[ip]))->Clone(Form("SPDmult10_%s_clone",periodNames[ip])));
632 if (!multEstimatorAvg[ip]) {
633 AliFatal(Form("Multiplicity estimator for %s not found! Please check your estimator file",periodNames[ip]));
634 return;
635 }
636 }
637 task->SetMultiplVsZProfileLHC13b(multEstimatorAvg[0]);
638 task->SetMultiplVsZProfileLHC13c(multEstimatorAvg[1]);
639
640 } else { //load multiplicity estimators for pp
641 const Char_t* periodNames[4] = {"LHC10b", "LHC10c", "LHC10d", "LHC10e"};
642 TProfile* multEstimatorAvg[4];
643
644 for(Int_t ip=0; ip<4; ip++) {
645 multEstimatorAvg[ip] = (TProfile*)(fileEstimator->Get(Form("SPDmult10_%s",periodNames[ip]))->Clone(Form("SPDmult10_%s_clone",periodNames[ip])));
646 if (!multEstimatorAvg[ip]) {
647 AliFatal(Form("Multiplicity estimator for %s not found! Please check your estimator file",periodNames[ip]));
648 return;
649 }
650 }
651 task->SetMultiplVsZProfileLHC10b(multEstimatorAvg[0]);
652 task->SetMultiplVsZProfileLHC10c(multEstimatorAvg[1]);
653 task->SetMultiplVsZProfileLHC10d(multEstimatorAvg[2]);
654 task->SetMultiplVsZProfileLHC10e(multEstimatorAvg[3]);
655 }
656 }
f26726ed 657
3ee5eb83 658 Printf("***************** CONTAINER SETTINGS *****************");
659 Printf("decay channel = %d",(Int_t)task->GetDecayChannel());
660 Printf("FillFromGenerated = %d",(Int_t)task->GetFillFromGenerated());
661 Printf("Dselection = %d",(Int_t)task->GetDselection());
3ee5eb83 662 Printf("Sign = %d",(Int_t)task->GetSign());
b7af2639 663 Printf("Centrality selection = %d",(Int_t)task->GetCentralitySelection());
1f780958 664 Printf("Fake selection = %d",(Int_t)task->GetFakeSelection());
0ada222f 665 Printf("RejectCandidateIfNotFromQuark selection = %d",(Int_t)task->GetRejectCandidateIfNotFromQuark());
666 Printf("UseMCVertex selection = %d",(Int_t)task->GetUseMCVertex());
1f780958 667 Printf("***************END CONTAINER SETTINGS *****************\n");
668
85e55da4 669 //-----------------------------------------------------------//
670 // create correlation matrix for unfolding - only eta-pt //
671 //-----------------------------------------------------------//
672
673 Bool_t AcceptanceUnf = kTRUE; // unfold at acceptance level, otherwise PPR
674
675 Int_t thnDim[4];
676
677 //first half : reconstructed
678 //second half : MC
679
ec5288c3 680 thnDim[0] = iBin[ipT];
681 thnDim[2] = iBin[ipT];
682 thnDim[1] = iBin[iy];
683 thnDim[3] = iBin[iy];
85e55da4 684
685 TString nameCorr="";
686 if(!isKeepDfromB) {
a147e835 687 nameCorr="CFHFcorr_DplustoKpipi_Prompt";
85e55da4 688 }
3ee5eb83 689 else if(isKeepDfromBOnly){
a147e835 690 nameCorr="CFHFcorr_DplustoKpipi_FromB";
85e55da4 691 }
692 else {
a147e835 693 nameCorr="CFHFcorr_DplustoKpipi_All";
85e55da4 694 }
050ff6a8 695 nameCorr += suffixName.Data();
f4fb19b2 696
85e55da4 697
698 THnSparseD* correlation = new THnSparseD(nameCorr,"THnSparse with correlations",4,thnDim);
699 Double_t** binEdges = new Double_t[2];
700
701 // set bin limits
702
ec5288c3 703 binEdges[0]= binLimpT;
704 binEdges[1]= binLimy;
85e55da4 705
706 correlation->SetBinEdges(0,binEdges[0]);
707 correlation->SetBinEdges(2,binEdges[0]);
708
709 correlation->SetBinEdges(1,binEdges[1]);
710 correlation->SetBinEdges(3,binEdges[1]);
711
712 correlation->Sumw2();
713
714 // correlation matrix ready
715 //------------------------------------------------//
716
717 task->SetCorrelationMatrix(correlation); // correlation matrix for unfolding
718
719 // Create and connect containers for input/output
720
721 // ------ input data ------
722 AliAnalysisDataContainer *cinput0 = mgr->GetCommonInputContainer();
723
724 // ----- output data -----
725
726 TString outputfile = AliAnalysisManager::GetCommonFileName();
f26726ed 727 TString output1name="", output2name="", output3name="", output4name="", output5name="";
85e55da4 728 output2name=nameContainer;
729 output3name=nameCorr;
f26726ed 730 output5name= "coutProfDp";
85e55da4 731 if(!isKeepDfromB) {
a147e835 732 outputfile += ":PWG3_D2H_CFtaskDplustoKpipi_Prompt";
733 output1name="CFHFhist_DplustoKpipi_Prompt";
b5e549ed 734 output3name+="_Prompt";
a147e835 735 output4name= "Cuts_DplustoKpipi_Prompt";
f26726ed 736 output5name+="_Prompt";
85e55da4 737 }
738 else if(isKeepDfromBOnly){
a147e835 739 outputfile += ":PWG3_D2H_CFtaskDplustoKpipi_FromB";
740 output1name="CFHFhist_DplustoKpipi_FromB";
b5e549ed 741 output3name+="_FromB";
a147e835 742 output4name= "Cuts_DplustoKpipi_FromB";
f26726ed 743 output5name+="_FromB";
85e55da4 744 }
745 else{
a147e835 746 outputfile += ":PWG3_D2H_CFtaskDplustoKpipi_All";
747 output1name="CFHFhist_DplustoKpipi_All";
b5e549ed 748 output3name+="_All";
a147e835 749 output4name= "Cuts_DplustoKpipi_All";
f26726ed 750 output5name+="_All";
85e55da4 751 }
f4fb19b2 752 outputfile += suffixName.Data();
753 output1name += suffixName.Data();
f4fb19b2 754 output4name += suffixName.Data();
f26726ed 755 output5name += suffixName.Data();
85e55da4 756
757 //now comes user's output objects :
758 // output TH1I for event counting
759 AliAnalysisDataContainer *coutput1 = mgr->CreateContainer(output1name, TH1I::Class(),AliAnalysisManager::kOutputContainer,outputfile.Data());
760 // output Correction Framework Container (for acceptance & efficiency calculations)
761 AliAnalysisDataContainer *coutput2 = mgr->CreateContainer(output2name, AliCFContainer::Class(),AliAnalysisManager::kOutputContainer,outputfile.Data());
762 // Unfolding - correlation matrix
763 AliAnalysisDataContainer *coutput3 = mgr->CreateContainer(output3name, THnSparseD::Class(),AliAnalysisManager::kOutputContainer,outputfile.Data());
764 AliAnalysisDataContainer *coutput4 = mgr->CreateContainer(output4name, AliRDHFCuts::Class(),AliAnalysisManager::kOutputContainer, outputfile.Data());
f26726ed 765 // estimators list
766 AliAnalysisDataContainer *coutput5 = mgr->CreateContainer(output5name, TList::Class(),AliAnalysisManager::kOutputContainer, outputfile.Data());
85e55da4 767
768 mgr->AddTask(task);
769
770 mgr->ConnectInput(task,0,mgr->GetCommonInputContainer());
771 mgr->ConnectOutput(task,1,coutput1);
772 mgr->ConnectOutput(task,2,coutput2);
773 mgr->ConnectOutput(task,3,coutput3);
774 mgr->ConnectOutput(task,4,coutput4);
f26726ed 775 mgr->ConnectOutput(task,5,coutput5);
85e55da4 776
777 return task;
b5e549ed 778}