]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
More TPC PID PbPb 2011
authorrbailhac <Raphaelle.Bailhache@cern.ch>
Fri, 17 Oct 2014 16:33:23 +0000 (18:33 +0200)
committerrbailhac <Raphaelle.Bailhache@cern.ch>
Fri, 17 Oct 2014 16:33:23 +0000 (18:33 +0200)
PWGHF/hfe/macros/configs/PbPb/CentCorrMapsTPC.root
PWGHF/hfe/macros/configs/PbPb/ConfigHFE_FLOW_TOFTPC.C
PWGHF/hfe/macros/configs/PbPb/EtaCorrMapsTPC.root

index 97d1800ed969ab6689d5fa480fc5e95c5c78d155..4626d75a0e93ed01c4862249c25375dd120f1c34 100644 (file)
Binary files a/PWGHF/hfe/macros/configs/PbPb/CentCorrMapsTPC.root and b/PWGHF/hfe/macros/configs/PbPb/CentCorrMapsTPC.root differ
index 92a46375812ebe3d193d18d47a40a88f158df262..3ee2f7041af237f3a79fe39d629855b58f25dced 100644 (file)
@@ -237,15 +237,17 @@ AliAnalysisTaskFlowTPCTOFEPSP* ConfigHFE_FLOW_TOFTPC(Bool_t useMC, TString appen
   
   if(withetacorrection || withmultcorrection) {
     AliHFEpidTPC *tpcpid = pid->GetDetPID(AliHFEpid::kTPCpid);
-    TF1 *etaCorr = GetEtaCorrection();
-    if(etaCorr && withetacorrection){
-      tpcpid->SetEtaCorrection(etaCorr);
-      printf("TPC dE/dx Eta correction %p\n",etaCorr);
+    TF1 *etaCorrMean = GetEtaCorrection("LHC11h_etaCorrMean");
+    TF1 *etaCorrWdth = GetEtaCorrection("LHC11h_etaCorrWidth");
+    if(etaCorrMean && etaCorrWdth && withetacorrection){
+      tpcpid->SetEtaCorrections(etaCorrMean, etaCorrWdth);
+      printf("TPC dE/dx Eta correction %p %p\n",etaCorrMean,etaCorrWdth);
     }
-    TF1 *centCorr = GetCentralityCorrection();
-    if(centCorr && withmultcorrection){
-      tpcpid->SetCentralityCorrection(centCorr);
-      printf("TPC dE/dx multiplicity correction %p\n",centCorr);
+    TF1 *centCorrMean = GetCentralityCorrection("LHC11h_multCorrMean");
+    TF1 *centCorrWdth = GetCentralityCorrection("LHC11h_multCorrWidth");
+    if(centCorrMean && centCorrWdth && withmultcorrection){
+      tpcpid->SetCentralityCorrections(centCorrMean, centCorrWdth);
+      printf("TPC dE/dx multiplicity correction %p %p\n",centCorrMean,centCorrWdth);
     }
   }
  
index 1a2a08e5afc910f622dfac21a0bbefb20bf687d2..2005d6a97ce87ac7bae1b3304dc067f750fc1004 100644 (file)
Binary files a/PWGHF/hfe/macros/configs/PbPb/EtaCorrMapsTPC.root and b/PWGHF/hfe/macros/configs/PbPb/EtaCorrMapsTPC.root differ