CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/TopQuarkAnalysis/Configuration/python/patRefSel_outputModule_cfi.py

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                                         # vertices and beam spot
00010                                         , 'keep *_offlineBeamSpot_*_*'
00011                                         , 'keep *_offlinePrimaryVertices*_*_*'
00012                                         , 'keep *_goodOfflinePrimaryVertices*_*_*'
00013                                         )
00014 , dropMetaData   = cms.untracked.string( 'ALL' )
00015 )