Skip to content
Snippets Groups Projects
Commit 3bfb9c77 authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

ElectronPhotonSelectorTools: Fix gcc7 warning.

gcc7 warning: do not use * with booleans.
parent 09f77a5e
No related branches found
No related tags found
No related merge requests found
...@@ -320,7 +320,7 @@ const Root::TResult& AsgElectronChargeIDSelectorTool::calculate( const xAOD::Ele ...@@ -320,7 +320,7 @@ const Root::TResult& AsgElectronChargeIDSelectorTool::calculate( const xAOD::Ele
} }
else { else {
allFound*=false; allFound=false;
ATH_MSG_WARNING ( "Failed, no track particle: et= " << et << "eta= " << eta ); ATH_MSG_WARNING ( "Failed, no track particle: et= " << et << "eta= " << eta );
} }
......
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