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

Adjust use of decor handle.

parent 4af36071
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!29564StoreGate: Ensure that WriteDecorHandle makes an alias.
///////////////////////// -*- C++ -*- /////////////////////////////
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
// IsolationBuilder.cxx
......@@ -508,7 +508,7 @@ StatusCode IsolationBuilder::executeCaloIso(const std::vector<std::pair<xAOD::Is
// let's do the core corrections
// iterate over the values we want to store
for (const auto& coreCorDecoPr : handles.coreCorDeco) {
for (auto& coreCorDecoPr : handles.coreCorDeco) {
// find the matching result
auto corIter = CaloIsoResult.coreCorrections.find(coreCorDecoPr.first);
if (corIter == CaloIsoResult.coreCorrections.end()) {
......@@ -542,7 +542,7 @@ StatusCode IsolationBuilder::executeCaloIso(const std::vector<std::pair<xAOD::Is
// }
// let's do the noncore corrections
for (const auto& noncoreCorDecoPr : handles.noncoreCorDeco) {
for (auto& noncoreCorDecoPr : handles.noncoreCorDeco) {
// find the matching result
auto corIter = CaloIsoResult.noncoreCorrections.find(noncoreCorDecoPr.first);
if (corIter == CaloIsoResult.noncoreCorrections.end()) {
......@@ -640,7 +640,7 @@ StatusCode IsolationBuilder::executeTrackIso(const std::vector<std::pair<xAOD::I
// let's do the core corrections
// iterate over the values we want to store
for (const auto& coreCorDecoPr : handles.coreCorDeco) {
for (auto& coreCorDecoPr : handles.coreCorDeco) {
// find the matching result
auto corIter = TrackIsoResult.coreCorrections.find(coreCorDecoPr.first);
if (corIter == TrackIsoResult.coreCorrections.end()) {
......
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