Skip to content

Commit 68d68bb

Browse files
committed
Include MC paths in NanoAOD output
1 parent b1e1d99 commit 68d68bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

HLTrigger/NGTScouting/python/HLTNanoProducer_cff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def hltNanoCustomize(process):
9191
)
9292
process.NANOAODSIMoutput.SelectEvents = cms.untracked.PSet(
9393
SelectEvents = cms.vstring(
94-
[p for p in process.paths if p.startswith('HLT_') or p.startswith('DST_')]
94+
[p for p in process.paths if p.startswith('HLT_') or p.startswith('MC_') or p.startswith('DST_')]
9595
)
9696
)
9797

HLTrigger/NGTScouting/python/hltTriggerAcceptFilter_cfi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
l1tResults = cms.InputTag( "" ),
88
l1tIgnoreMaskAndPrescale = cms.bool( False ),
99
throw = cms.bool( False ),
10-
triggerConditions = cms.vstring('HLT_*')
10+
triggerConditions = cms.vstring('HLT_*', 'MC_*')
1111
)
1212

1313
dstTriggerAcceptFilter = _triggerResultsFilter.clone(

0 commit comments

Comments
 (0)