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)