Skip to content
Snippets Groups Projects
Commit 5292766d authored by scott snyder's avatar scott snyder
Browse files

TrigTauMatching: const fix

Fix const problem in DataVector iteration.


Former-commit-id: f6f23608
parent 212c548a
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ bool Trig::TrigTauMatchingTool::matchL1(const xAOD::TauJet *p,
{
if (c)
{
for (auto &it: *c)
for (const xAOD::EmTauRoI* it : *c)
{
if (it->roiType() == xAOD::EmTauRoI::TauRoIWord)
{
......
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