Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 out = cms.OutputModule( "PoolOutputModule"
00004 , fileName = cms.untracked.string( 'patTuple.root' )
00005 , SelectEvents = cms.untracked.PSet( SelectEvents = cms.vstring( 'p' ) )
00006 , outputCommands = cms.untracked.vstring( 'drop *'
00007 , 'keep edmTriggerResults_*_*_*'
00008 , 'keep *_hltTriggerSummaryAOD_*_*'
00009
00010 , 'keep *_offlineBeamSpot_*_*'
00011 , 'keep *_offlinePrimaryVertices*_*_*'
00012 , 'keep *_goodOfflinePrimaryVertices*_*_*'
00013 )
00014 , dropMetaData = cms.untracked.string( 'ALL' )
00015 )