Skip to content
Snippets Groups Projects
Commit 00d997c6 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'fix-min-bias-counts-recording' into 'master'

Fixed saving decorations from SP counts

See merge request atlas/athena!39296
parents acab6f19 c1fc024b
No related merge requests found
......@@ -342,13 +342,7 @@ StatusCode HLTEDMCreator::createOutput(const EventContext& context) const {
}
#define CREATE_XAOD_NO_MERGE(__TYPE, __STORE_TYPE) \
{ \
xAODGenerator<xAOD::__TYPE, xAOD::__STORE_TYPE> generator; \
ATH_CHECK( createIfMissing<xAOD::__TYPE>( context, ConstHandlesGroup<xAOD::__TYPE>( m_##__TYPE, m_##__TYPE##InViews, m_##__TYPE##Views ), generator, &HLTEDMCreator::noMerge<xAOD::__TYPE> ) ); \
}
CREATE_XAOD_NO_MERGE( TrigCompositeContainer, TrigCompositeAuxContainer );
CREATE_XAOD( TrigCompositeContainer, TrigCompositeAuxContainer );
CREATE_XAOD( TrigElectronContainer, TrigElectronAuxContainer );
CREATE_XAOD( ElectronContainer, ElectronAuxContainer );
CREATE_XAOD( PhotonContainer, PhotonAuxContainer );
......@@ -366,18 +360,16 @@ StatusCode HLTEDMCreator::createOutput(const EventContext& context) const {
CREATE_XAOD( TauJetContainer, TauJetAuxContainer );
CREATE_XAOD( TauTrackContainer, TauTrackAuxContainer );
CREATE_XAOD( CaloClusterContainer, CaloClusterTrigAuxContainer ); // NOTE: Difference in interface and aux
// After view collections are merged, need to update collection links
CREATE_XAOD( JetContainer, JetAuxContainer );
CREATE_XAOD( VertexContainer,VertexAuxContainer );
CREATE_XAOD( TrigBphysContainer, TrigBphysAuxContainer );
CREATE_XAOD( BTaggingContainer,BTaggingAuxContainer );
CREATE_XAOD( BTagVertexContainer,BTagVertexAuxContainer );
// After view collections are merged, need to update collection links
ATH_CHECK( fixLinks() );
#undef CREATE_XAOD
#undef CREATE_XAOD_NO_MERGE
// special cases
#define CREATE_SHALLOW(__TYPE) \
......
......@@ -526,7 +526,7 @@ TriggerHLTListRun3 = [
('ROIB::RoIBResult#*', 'ESD', 'Misc'),
('xAOD::TrigCompositeContainer#HLT_SpacePointCounts', 'BS ESD AODFULL AODSLIM', 'MinBias'),
('xAOD::TrigCompositeContainer#HLT_SpacePointCounts', 'BS ESD AODFULL AODSLIM', 'MinBias', 'inViews:SPView'),
('xAOD::TrigCompositeAuxContainer#HLT_SpacePointCountsAux.totNumPixSP.totNumPixCL_1.totNumPixCL_2.totNumPixCLmin3.pixClBarrel.pixClEndcapA.pixClEndcapC.totNumSctSP.SctSpBarrel.SctSpEndcapA.SctSpEndcapC', 'BS ESD AODFULL AODSLIM', 'MinBias'),
('xAOD::TrigCompositeContainer#HLT_TrackCount', 'BS ESD AODFULL AODSLIM', 'MinBias'),
......
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