1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import FWCore.ParameterSet.Config as cms
# EventContent for HLT Scouting products.
# This file keep track of all the scouting objects used since Run-2
HLTScoutingAll = cms.PSet(
outputCommands = cms.vstring( *(
## Current scouting objects (from 2025, V1.3, same content as HLTriggerMINIAOD)
'keep *_hltFEDSelectorL1_*_*', # PR #20739
'keep *_hltScoutingEgammaPacker_*_*', # PR #20739
'keep *_hltScoutingMuonPackerNoVtx_*_*', # PR #44302
'keep *_hltScoutingMuonPackerVtx_*_*', # PR #44302
'keep *_hltScoutingPFPacker_*_*', # PR #20739
'keep *_hltScoutingPrimaryVertexPacker_*_*', # PR #20739
'keep *_hltScoutingRecHitPacker_*_*', # PR #48613
'keep *_hltScoutingTrackPacker_*_*', # PR #23077
'keep edmTriggerResults_*_*_*',
## Previous scouting objects
# Run3 (2022-23)
'keep *_hltScoutingMuonPacker_*_*', # added w/ PR#20739, removed w/ PR#44302
# Run2 only
'keep *_hltScoutingCaloPacker_*_*', # added w/ PR#20739, removed w/ PR#37114
'keep *_hltScoutingMuonPackerCalo_*_*', # added w/ PR#20739, removed w/ PR#37114
'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', # added w/ PR#20739, removed w/ PR#37114
) )
)
# HLTScoutingExtra is used in Configuration/EventContent to keep all scouting objects available in all AOD/MINIAOD[SIM]
HLTScoutingExtra = cms.PSet(
outputCommands = cms.vstring( *(
## Previous scouting objects
# Run3 (2022-23)
'keep *_hltScoutingMuonPacker_*_*', # added w/ PR#20739, removed w/ PR#44302
# Run2 only
'keep *_hltScoutingCaloPacker_*_*', # added w/ PR#20739, removed w/ PR#37114
'keep *_hltScoutingMuonPackerCalo_*_*', # added w/ PR#20739, removed w/ PR#37114
'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', # added w/ PR#20739, removed w/ PR#37114
) )
)
|