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 # MET Event Content
0004 from JetMETAnalysis.METSkims.metHigh_EventContent_cff import *
0005 from JetMETAnalysis.METSkims.metLow_EventContent_cff import *
0006 
0007 # JET Event Content
0008 #from JetMETAnalysis.JetSkims.onejet_EventContent_cff import *
0009 #from JetMETAnalysis.JetSkims.photonjets_EventContent_cff import *
0010 
0011 JetMETAnalysisEventContent = cms.PSet(
0012     outputCommands = cms.untracked.vstring()
0013 )
0014 JetMETAnalysisEventContent.outputCommands.extend(metHighEventContent.outputCommands)
0015 JetMETAnalysisEventContent.outputCommands.extend(metLowEventContent.outputCommands)
0016 #JetMETAnalysisEventContent.outputCommands.extend(onejetEventContent.outputCommands)
0017 #JetMETAnalysisEventContent.outputCommands.extend(photonjetsEventContent.outputCommands)
0018