00001 import FWCore.ParameterSet.Config as cms 00002 00003 from Configuration.eventContent.EventContent_cff import * 00004 muonL1EventContent = cms.PSet( 00005 outputCommands = cms.untracked.vstring() 00006 ) 00007 muonL1EventSelection = cms.PSet( 00008 SelectEvents = cms.untracked.PSet( 00009 SelectEvents = cms.vstring('muonL1Path') 00010 ) 00011 ) 00012 RECOSIMmuonL1EventContent = cms.PSet( 00013 outputCommands = cms.untracked.vstring() 00014 ) 00015 AODSIMmuonL1EventContent = cms.PSet( 00016 outputCommands = cms.untracked.vstring() 00017 ) 00018 RECOSIMmuonL1EventContent.outputCommands.extend(RECOSIMEventContent.outputCommands) 00019 RECOSIMmuonL1EventContent.outputCommands.extend(muonL1EventContent.outputCommands) 00020 AODSIMmuonL1EventContent.outputCommands.extend(AODSIMEventContent.outputCommands) 00021 AODSIMmuonL1EventContent.outputCommands.extend(muonL1EventContent.outputCommands) 00022