CMS 3D CMS Logo

patRefSel_outputModule_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from TopQuarkAnalysis.Configuration.patRefSel_eventContent_cff import common_eventContent
4 
5 out = cms.OutputModule(
6  "PoolOutputModule"
7 , fileName = cms.untracked.string( 'test.root' )
8 , SelectEvents = cms.untracked.PSet( SelectEvents = cms.vstring() )
9 , outputCommands = cms.untracked.vstring( 'drop *'
10  , *common_eventContent
11  )
12 , dropMetaData = cms.untracked.string( 'ALL' )
13 )