Skip to content
Snippets Groups Projects
Commit a564e1a3 authored by Keisuke Yoshihara's avatar Keisuke Yoshihara
Browse files

small update

Former-commit-id: 82c651ae2cf6c3de448278255e04f33d35d14529
parent a6a80a5f
No related branches found
No related tags found
No related merge requests found
......@@ -219,9 +219,10 @@ StatusCode SUSYObjDef_xAOD::FillElectron(xAOD::Electron& input, float etcut, flo
dec_baseline(input) = true;
dec_selected(input) = 2;
dec_isol(input) = m_isoTool->accept(input);
dec_isolHighPt(input) = m_isoHighPtTool->accept(input);
if (m_eleIsoHighPt_WP == "FixedCutHighPtCaloOnly" && acc_topoetcone20.isAvailable(input)) {
dec_isolHighPt(input) = acc_topoetcone20(input)/input.pt() < 0.015 || m_isoHighPtTool->accept(input);
} else {
dec_isolHighPt(input) = m_isoHighPtTool->accept(input);
}
//ChargeIDSelector
......@@ -401,7 +402,7 @@ float SUSYObjDef_xAOD::GetSignalElecSF(const xAOD::Electron& el,
if (isoSF) {
double iso_sf(1.);
CP::CorrectionCode result;
if (acc_isolHighPt(el) && el.pt()>400e3)
if (acc_isolHighPt(el) && el.pt()>200e3)
result = m_elecEfficiencySFTool_isoHighPt->getEfficiencyScaleFactor(el, iso_sf);
else
result = m_elecEfficiencySFTool_iso->getEfficiencyScaleFactor(el, iso_sf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment