From b6bfd1c0ba1d824dbecf43d52f12a4a7073d9136 Mon Sep 17 00:00:00 2001 From: Jeongeun Lee Date: Wed, 22 Apr 2020 14:46:51 +0200 Subject: [PATCH] update event content structure --- .../python/RecoPixelVertexing_EventContent_cff.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_EventContent_cff.py b/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_EventContent_cff.py index e2e2727840302..4f16442aeb1f9 100644 --- a/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_EventContent_cff.py +++ b/RecoPixelVertexing/Configuration/python/RecoPixelVertexing_EventContent_cff.py @@ -1,13 +1,13 @@ import FWCore.ParameterSet.Config as cms -#Full Event content -RecoPixelVertexingFEVT = cms.PSet( - outputCommands = cms.untracked.vstring('keep *_pixelTracks_*_*', - 'keep *_pixelVertices_*_*') -) #RECO content RecoPixelVertexingRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*') ) +#Full Event content +RecoPixelVertexingFEVT = cms.PSet( + outputCommands = cms.untracked.vstring() +) +RecoPixelVertexingFEVT.outputCommands.extend(RecoPixelVertexingRECO.outputCommands)