Skip to content
Snippets Groups Projects
Commit e84c5870 authored by Jon Burr's avatar Jon Burr
Browse files

Deal with compiler warning

parent 961885ea
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,!34684LCW calibrations for topoclusters
...@@ -251,9 +251,9 @@ StatusCode TrigCaloClusterMakerMT::execute(const EventContext& ctx) const ...@@ -251,9 +251,9 @@ StatusCode TrigCaloClusterMakerMT::execute(const EventContext& ctx) const
for (const ToolHandle<CaloClusterProcessor>& clcorr : m_clusterCorrections) { for (const ToolHandle<CaloClusterProcessor>& clcorr : m_clusterCorrections) {
for (xAOD::CaloCluster* cl : *pCaloClusterContainer) { for (xAOD::CaloCluster* cl : *pCaloClusterContainer) {
if (!m_isSW if (!m_isSW ||
|| std::abs(cl->eta0()) < 1.45 && clcorr->name().find("37") != std::string::npos (std::abs(cl->eta0()) < 1.45 && clcorr->name().find("37") != std::string::npos) ||
|| std::abs(cl->eta0()) >= 1.45 && clcorr->name().find("55") != std::string::npos) { (std::abs(cl->eta0()) >= 1.45 && clcorr->name().find("55") != std::string::npos) ) {
ATH_CHECK(clcorr->execute(ctx, cl) ); ATH_CHECK(clcorr->execute(ctx, cl) );
ATH_MSG_VERBOSE("Executed correction tool " << clcorr->name()); ATH_MSG_VERBOSE("Executed correction tool " << clcorr->name());
} }
......
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