diff --git a/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopEgammaCPTools.cxx b/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopEgammaCPTools.cxx index 04c302f39df6f2d9437159ab94ceb5dccb4f010a..468811f2cd44e054e20eb846c5da48faa0c142b9 100644 --- a/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopEgammaCPTools.cxx +++ b/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopEgammaCPTools.cxx @@ -372,16 +372,16 @@ std::string EgammaCPTools::electronSFMapFilePath(const std::string& type) { std::string file_path; if(type == "reco") { - file_path = "map2.txt"; + file_path = "map3.txt"; } else if(type == "ID"){ - file_path = "map2.txt"; + file_path = "map3.txt"; } else if(type == "isolation"){ - file_path = "map2.txt"; + file_path = "map3.txt"; } else if(type == "trigger"){ - file_path = "map2.txt"; + file_path = "map3.txt"; } else if(type == "ChargeID") { ATH_MSG_ERROR("Use electronSFFilePath method until ChargeID is supported by maps"); diff --git a/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopTriggerCPTools.cxx b/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopTriggerCPTools.cxx index 54192ba56db7c5e1647cac05b9f77537ca4d275a..26674d34b1fb1d9d1444b7656d479ff3c64c5df0 100644 --- a/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopTriggerCPTools.cxx +++ b/PhysicsAnalysis/TopPhys/xAOD/TopCPTools/Root/TopTriggerCPTools.cxx @@ -160,7 +160,7 @@ StatusCode TriggerCPTools::initialiseGlobalTriggerEff(){ { ATH_MSG_INFO("TIGHT " << year << " " << trigKey << " " << electronID << " " << electronIsolation ); auto t = m_electronToolsFactory.emplace(m_electronToolsFactory.end(), "AsgElectronEfficiencyCorrectionTool/ElTrigEff_"+std::to_string(j)+"_"+std::to_string(nTools)); - top::check(t->setProperty("MapFilePath", "ElectronEfficiencyCorrection/2015_2017/rel21.2/Consolidation_September2018_v1/map1.txt"), "Fail"); + top::check(t->setProperty("MapFilePath", "ElectronEfficiencyCorrection/2015_2017/rel21.2/Consolidation_September2018_v1/map3.txt"), "Fail"); top::check(t->setProperty("TriggerKey", (j? year+"_"+trigKey : "Eff_"+year+"_"+trigKey)), "Failed to set TriggerKey"); if (electronID != "None") top::check(t->setProperty("IdKey", electronID), "Failed to set IdKey"); @@ -195,7 +195,7 @@ StatusCode TriggerCPTools::initialiseGlobalTriggerEff(){ { ATH_MSG_INFO("LOOSE " << year << " " << trigKey << " " << electronIDLoose << " " << electronIsolationLoose ); auto tLoose = m_electronToolsFactoryLoose.emplace(m_electronToolsFactoryLoose.end(), "AsgElectronEfficiencyCorrectionTool/ElTrigEffLoose_"+std::to_string(j)+"_"+std::to_string(nTools)); - top::check(tLoose->setProperty("MapFilePath", "ElectronEfficiencyCorrection/2015_2017/rel21.2/Consolidation_September2018_v1/map1.txt"), "Fail"); + top::check(tLoose->setProperty("MapFilePath", "ElectronEfficiencyCorrection/2015_2017/rel21.2/Consolidation_September2018_v1/map3.txt"), "Fail"); top::check(tLoose->setProperty("TriggerKey", (j? year+"_"+trigKey : "Eff_"+year+"_"+trigKey)),"Failed to set TriggerKey"); if (electronIDLoose != "None") top::check(tLoose->setProperty("IdKey", electronIDLoose),"Failed to set IdKey");