Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002 from Configuration.EventContent.EventContent_cff import *
00003
00004
00005 exoticaDiLeptonOutputModule = cms.OutputModule("PoolOutputModule",
00006 outputCommands = cms.untracked.vstring(),
00007 SelectEvents = cms.untracked.PSet(
00008 SelectEvents = cms.vstring("exoticaDiMuonSkimPath","exoticaDiElectronSkimPath","exoticaEMuSkimPath")
00009
00010 ),
00011 dataset = cms.untracked.PSet(
00012 filterName = cms.untracked.string('EXODiLepton'),
00013 dataTier = cms.untracked.string('EXOGroup')
00014 ),
00015 fileName = cms.untracked.string('exoticadileptontest.root')
00016 )
00017
00018
00019
00020 exoticaDiLeptonOutputModule.outputCommands.extend(RECOSIMEventContent.outputCommands)
00021
00022
00023 SpecifiedEvenetContent=cms.PSet(
00024 outputCommands = cms.untracked.vstring(
00025 "keep *_exoticaHLTDiMuonFilter_*_*",
00026 "keep *_exoticaHLTDiElectronFilter_*_*",
00027 "keep *_exoticaHLTElectronFilter_*_*",
00028 "keep *_exoticaHLTMuonFilter_*_*",
00029 "keep *_exoticaRecoDiMuonFilter_*_*",
00030 "keep *_exoticaRecoDiElectronFilter_*_*",
00031 "keep *_exoticaRecoMuonFilter_*_*",
00032 "keep *_exoticaRecoElectronFilter_*_*",
00033 )
00034 )
00035 exoticaDiLeptonOutputModule.outputCommands.extend(SpecifiedEvenetContent.outputCommands)
00036
00037
00038