Skip to content
Snippets Groups Projects
Commit 9c16f0b2 authored by Scott Snyder's avatar Scott Snyder Committed by Tadej Novak
Browse files

AthenaPoolMultiTest: Fix cppcheck warning.

AthenaPoolMultiTest: Fix cppcheck warning.

Redundant null check.
parent be7ccc71
No related branches found
No related tags found
14 merge requests!59674InDetPerformanceMonitoring with LumiBlock selection,!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!58990Draft:Fixing bug in FTF config when running with Reco_tf,!58835DataQualityConfigurations: Modify L1Calo config for web display,!58791DataQualityConfigurations: Modify L1Calo config for web display,!58373Modification of V2.3 processing to work well with all clients,!58289New NVSI calibration,!58286New NVSI calibration,!58106Update NVSI example algorithm,!57937Draft: New nighlty test for trigger with a Run 4 single muon RDO,!57841Edits to ZDC signal processing in preparation for analysis of data from LHCf run,!57590Fixing LAr DT dumper,!57584Draft: LAr DB fixes,!57455AthenaPoolMultiTest: Fix cppcheck warning.
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -68,10 +68,8 @@ StatusCode AddTrigMap::execute()
ATH_CHECK( wftm.record (std::move (ftm)) );
}
// Now add a copy for exclude list test
if (ftm2) {
SG::WriteHandle<FauxTriggerMap> wftm2(m_wftm2);
ATH_CHECK( wftm2.record (std::move (ftm2)) );
}
SG::WriteHandle<FauxTriggerMap> wftm2(m_wftm2);
ATH_CHECK( wftm2.record (std::move (ftm2)) );
ATH_MSG_INFO( "registered all data" );
return(StatusCode::SUCCESS);
......
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