Skip to content
Snippets Groups Projects
Commit f850582f authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'master-egammaSelectorsSCBug' into 'master'

Fix issue of the electron IsEM selector returning a StatusCode when it needed to return an int

See merge request atlas/athena!7084

Former-commit-id: 48e94b66
parents 5eb4854c 659bcde0
No related branches found
No related tags found
No related merge requests found
...@@ -517,7 +517,7 @@ unsigned int AsgElectronIsEMSelector::TrackCut(const xAOD::Electron* eg, ...@@ -517,7 +517,7 @@ unsigned int AsgElectronIsEMSelector::TrackCut(const xAOD::Electron* eg,
ATH_MSG_ERROR("Something is bad with the variables as passed"); ATH_MSG_ERROR("Something is bad with the variables as passed");
// if object is bad then use the bit for "bad eta" // if object is bad then use the bit for "bad eta"
iflag = (0x1 << egammaPID::ClusterEtaRange_Electron); iflag = (0x1 << egammaPID::ClusterEtaRange_Electron);
return StatusCode::SUCCESS; return iflag;
} }
// Track quality cuts // Track quality cuts
......
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