File indexing completed on 2024-04-06 12:19:15
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from JetMETAnalysis.METSkims.metHigh_EventContent_cff import *
0005 from JetMETAnalysis.METSkims.metLow_EventContent_cff import *
0006
0007
0008
0009
0010
0011 JetMETAnalysisEventContent = cms.PSet(
0012 outputCommands = cms.untracked.vstring()
0013 )
0014 JetMETAnalysisEventContent.outputCommands.extend(metHighEventContent.outputCommands)
0015 JetMETAnalysisEventContent.outputCommands.extend(metLowEventContent.outputCommands)
0016
0017
0018