diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYGenFilterTool.cxx b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYGenFilterTool.cxx index 3b4ead937294c4eb4e82328af6ea049870d740d3..fb4cd10fc9c0c97e3390d100adbb8a55153c329a 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYGenFilterTool.cxx +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYGenFilterTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration */ #include "DerivationFrameworkSUSY/SUSYGenFilterTool.h" @@ -139,7 +139,7 @@ namespace DerivationFramework { // Get HT genFiltHT = -1; - for (const auto& tj : *truthjets) { + for (const auto tj : *truthjets) { if ( tj->pt()>m_MinJetPt && fabs(tj->eta())<m_MaxJetEta ) { ATH_MSG_VERBOSE("Adding truth jet with pt " << tj->pt() << ", eta " << tj->eta() @@ -150,7 +150,7 @@ namespace DerivationFramework { } float MEx(0.), MEy(0.); - for (const auto& tp : *tpc){ + for (const auto tp : *tpc){ int pdgid = tp->pdgId(); if (tp->barcode() >= m_SimBarcodeOffset) continue; // Particle is from G4 if (pdgid==21 && tp->e()==0) continue; // Work around for an old generator bug diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYSignalTagger.cxx b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYSignalTagger.cxx index 0f0ed03f0b1322b955c54e30e0e7b1f6a795d1c7..24ee6671d2577fa5953a9a3a0526f7ff08b905c4 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYSignalTagger.cxx +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkSUSY/src/SUSYSignalTagger.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration */ #include "DerivationFrameworkSUSY/SUSYSignalTagger.h" @@ -98,7 +98,7 @@ namespace DerivationFramework { if (!truthP || truthP->empty()) { return false; } - for (const auto& tp : *truthP) { + for (const auto tp : *truthP) { //check ifSUSY particle if ((abs(tp->pdgId()) > 1000000 && abs(tp->pdgId()) < 1000007) || // squarkL @@ -138,7 +138,7 @@ namespace DerivationFramework { if (!firstsp && !secondsp) return false; // should find none or two if (firstsp && firstsp->nChildren() == 1) { - for (const auto& tp : *truthP) { + for (const auto tp : *truthP) { if (tp->barcode() == firstsp->child(0)->barcode() && tp->pdgId() != firstsp->pdgId()) { firstsp = tp; break; @@ -147,7 +147,7 @@ namespace DerivationFramework { } if (secondsp && secondsp->nChildren() == 1) { - for (const auto& tp : *truthP) { + for (const auto tp : *truthP) { if (tp->barcode() == secondsp->child(0)->barcode() && tp->pdgId() != secondsp->pdgId()) { secondsp = tp; break;