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.metHigh_EventContent_cff import *
0004 from JetMETAnalysis.METSkims.FEVTSIMMetHigh_EventContent_cff import *
0005 metHighOutputModuleFEVTSIM = cms.OutputModule("PoolOutputModule",
0006     FEVTSIMMetHighEventContent,
0007     metHighEventSelection,
0008     dataset = cms.untracked.PSet(
0009         filterName = cms.untracked.string('metHigh_FEVTSIM'),
0010         dataTier = cms.untracked.string('USER')
0011     ),
0012     fileName = cms.untracked.string('metHigh_FEVTSIM.root')
0013 )
0014 
0015