Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-07-31 02:19:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # EventContent for HLT Scouting products.
0004 
0005 # This file keep track of all the scouting objects used since Run-2 
0006 # HLTScoutingAll is used in Configuration/EventContent to keep all scouting objects available in all AOD/MINIAOD[SIM]
0007 
0008 HLTScoutingAll = cms.PSet(
0009     outputCommands = cms.vstring( *(
0010         ## Current scouting objects (from 2024)
0011         'keep *_hltFEDSelectorL1_*_*',  # PR#20739
0012         'keep *_hltScoutingEgammaPacker_*_*', # PR#20739
0013         'keep *_hltScoutingMuonPackerNoVtx_*_*', # PR#44302
0014         'keep *_hltScoutingMuonPackerVtx_*_*',  # PR#44302
0015         'keep *_hltScoutingPFPacker_*_*', # PR#20739
0016         'keep *_hltScoutingPrimaryVertexPacker_*_*',  # PR#20739
0017         'keep *_hltScoutingTrackPacker_*_*', # PR #23077
0018         
0019         ## Previous scouting objects
0020         # Run3 (2022-23)
0021         'keep *_hltScoutingMuonPacker_*_*', # added w/ PR#20739, removed w/ PR#44302
0022         
0023         # Run2 only
0024         'keep *_hltScoutingCaloPacker_*_*',  # added  w/ PR#20739, removed w/ PR#37114
0025         'keep *_hltScoutingMuonPackerCalo_*_*', # added  w/ PR#20739, removed w/  PR#37114
0026         'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', # added  w/ PR#20739, removed w/  PR#37114
0027     ) )
0028 )