Skip to content
Snippets Groups Projects
Commit 93e16efa authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'clang.TrigOutputHandling-20200812' into 'master'

TrigOutputHandling: Fix clang warnings.

See merge request atlas/athena!35535
parents daba1307 79edeaea
No related branches found
No related tags found
No related merge requests found
...@@ -380,7 +380,7 @@ StatusCode HLTEDMCreator::createOutput(const EventContext& context) const { ...@@ -380,7 +380,7 @@ StatusCode HLTEDMCreator::createOutput(const EventContext& context) const {
if ( not readHandle.isValid() ) { // collection is missing if ( not readHandle.isValid() ) { // collection is missing
ATH_MSG_DEBUG( "Creating missing CaloClusterContainerShallowCopy " << m_CaloClusterContainerShallowCopy[index].key() ); ATH_MSG_DEBUG( "Creating missing CaloClusterContainerShallowCopy " << m_CaloClusterContainerShallowCopy[index].key() );
auto writeHandle = SG::makeHandle( m_CaloClusterContainerShallowCopyOut[index], context ); auto writeHandle = SG::makeHandle( m_CaloClusterContainerShallowCopyOut[index], context );
ATH_CHECK( writeHandle.record( std::move( std::make_unique<xAOD::CaloClusterContainer>()), std::move(std::make_unique<xAOD::ShallowAuxContainer>()) )); ATH_CHECK( writeHandle.record( std::make_unique<xAOD::CaloClusterContainer>(), std::make_unique<xAOD::ShallowAuxContainer>() ));
} else { } else {
ATH_MSG_DEBUG( "CaloClusterContainerShallowCopy " << m_CaloClusterContainerShallowCopyOut[index].key() << " present in the event, done nothing"); ATH_MSG_DEBUG( "CaloClusterContainerShallowCopy " << m_CaloClusterContainerShallowCopyOut[index].key() << " present in the event, done nothing");
} }
......
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