Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from TopQuarkAnalysis.Configuration.patRefSel_eventContent_cff import common_eventContent
0004 
0005 out = cms.OutputModule(
0006   "PoolOutputModule"
0007 , fileName       = cms.untracked.string( 'test.root' )
0008 , SelectEvents   = cms.untracked.PSet( SelectEvents = cms.vstring() )
0009 , outputCommands = cms.untracked.vstring( 'drop *'
0010                                         , *common_eventContent
0011                                         )
0012 , dropMetaData   = cms.untracked.string( 'ALL' )
0013 )