Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjusting hltGetConfigution "minimal" event content to include the L1 #36260

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion HLTrigger/Configuration/python/Tools/confdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,14 @@ def overrideOutput(self):
),
outputCommands = cms.untracked.vstring( 'drop *',
'keep edmTriggerResults_*_*_*',
'keep triggerTriggerEvent_*_*_*'
'keep triggerTriggerEvent_*_*_*',
'keep GlobalAlgBlkBXVector_*_*_*',
'keep GlobalExtBlkBXVector_*_*_*',
'keep l1tEGammaBXVector_*_EGamma_*',
'keep l1tEtSumBXVector_*_EtSum_*',
'keep l1tJetBXVector_*_Jet_*',
'keep l1tMuonBXVector_*_Muon_*',
'keep l1tTauBXVector_*_Tau_*',
)
)
%(process)s.MinimalOutput = cms.EndPath( %(process)s.hltOutputMinimal )
Expand Down