Skip to content

Commit

Permalink
Add FEDRawDataCollection to RAWMINIAOD skim event content; remove Raw…
Browse files Browse the repository at this point in the history
…EventContent, add L1TriggerRAW and HLTriggerRAW after MicroEventContent to avoid the hidden drop * in MicroEventContent.
  • Loading branch information
kfjack committed Jul 20, 2017
1 parent ae7effd commit 5e247c1
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions Configuration/EventContent/python/EventContent_cff.py
Expand Up @@ -802,10 +802,20 @@ def SwapKeepAndDrop(l):
compressionLevel=cms.untracked.int32(4)
)

RAWMINIAODEventContent.outputCommands.extend(RAWEventContent.outputCommands)
RAWMINIAODEventContent.outputCommands.extend(MicroEventContent.outputCommands)
RAWMINIAODSIMEventContent.outputCommands.extend(RAWEventContent.outputCommands)
RAWMINIAODEventContent.outputCommands.extend(L1TriggerRAW.outputCommands)
RAWMINIAODEventContent.outputCommands.extend(HLTriggerRAW.outputCommands)
RAWMINIAODSIMEventContent.outputCommands.extend(MicroEventContentMC.outputCommands)
RAWMINIAODSIMEventContent.outputCommands.extend(L1TriggerRAW.outputCommands)
RAWMINIAODSIMEventContent.outputCommands.extend(HLTriggerRAW.outputCommands)
RAWMINIAODEventContent.outputCommands.extend(cms.untracked.vstring(
'keep FEDRawDataCollection_rawDataCollector_*_*',
'keep FEDRawDataCollection_source_*_*'
))
RAWMINIAODSIMEventContent.outputCommands.extend(cms.untracked.vstring(
'keep FEDRawDataCollection_rawDataCollector_*_*',
'keep FEDRawDataCollection_source_*_*'
))

#
#
Expand Down

0 comments on commit 5e247c1

Please sign in to comment.