00001
00002
00003
00004
00005 import FWCore.ParameterSet.Config as cms
00006
00007
00008 from JetMETAnalysis.METSkims.metHigh_EventContent_cff import *
00009 from JetMETAnalysis.METSkims.metLow_EventContent_cff import *
00010
00011
00012 from JetMETAnalysis.JetSkims.onejet_EventContent_cff import *
00013 from JetMETAnalysis.JetSkims.photonjets_EventContent_cff import *
00014
00015 JetMETAnalysisEventContent = cms.PSet(
00016 outputCommands = cms.untracked.vstring()
00017 )
00018 JetMETAnalysisEventContent.outputCommands.extend(metHighEventContent.outputCommands)
00019 JetMETAnalysisEventContent.outputCommands.extend(metLowEventContent.outputCommands)
00020 JetMETAnalysisEventContent.outputCommands.extend(onejetEventContent.outputCommands)
00021 JetMETAnalysisEventContent.outputCommands.extend(photonjetsEventContent.outputCommands)
00022