Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:15

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from JetMETAnalysis.METSkims.metLow_EventContent_cff import *
0004 from JetMETAnalysis.METSkims.AODSIMMetLow_EventContent_cff import *
0005 metLowOutputModuleAODSIM = cms.OutputModule("PoolOutputModule",
0006     metLowEventSelection,
0007     AODSIMMetLowEventContent,
0008     fileName = cms.untracked.string('metLow_AODSIM.root'),
0009     dataset = cms.untracked.PSet(
0010         filterName = cms.untracked.string('metLow_AODSIM'),
0011         dataTier = cms.untracked.string('USER')
0012     )
0013 )
0014 
0015