00001 import FWCore.ParameterSet.Config as cms 00002 00003 from ElectroWeakAnalysis.ZReco.zToMuMuNew_EventContent_cff import * 00004 from Configuration.eventContent.EventContent_cff import * 00005 AODSIMZToMuMuNewEventContent = cms.PSet( 00006 outputCommands = cms.untracked.vstring() 00007 ) 00008 zToMuMuNewOutputModule = cms.OutputModule("PoolOutputModule", 00009 zToMuMuNewEventSelection, 00010 AODSIMZToMuMuNewEventContent, 00011 dataset = cms.untracked.PSet( 00012 filterName = cms.untracked.string('zToMuMuNew'), 00013 dataTier = cms.untracked.string('USER') 00014 ), 00015 fileName = cms.untracked.string('zToMuMuNew.root') 00016 ) 00017 00018 AODSIMZToMuMuNewEventContent.outputCommands.extend(AODSIMEventContent.outputCommands) 00019 AODSIMZToMuMuNewEventContent.outputCommands.extend(zToMuMuNewEventContent.outputCommands) 00020