Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from Configuration.EventContent.EventContent_cff import *
00004 AODSIMWJetEventContent = cms.OutputModule("PoolOutputModule",
00005 AODSIMEventContent,
00006 dataset = cms.untracked.PSet(
00007 filterName = cms.untracked.string('EgammaWJetFilter'),
00008 dataTier = cms.untracked.string('AODSIM')
00009 ),
00010 SelectEvents = cms.untracked.PSet(
00011 SelectEvents = cms.vstring('electronFilterPath',
00012 'muonFilterPath')
00013 ),
00014 fileName = cms.untracked.string('WJetFilteredAODSIM.root')
00015 )
00016
00017 RECOSIMWJetEventContent = cms.OutputModule("PoolOutputModule",
00018 RECOSIMEventContent,
00019 dataset = cms.untracked.PSet(
00020 filterName = cms.untracked.string('EgammaWJetFilter'),
00021 dataTier = cms.untracked.string('RECOSIM')
00022 ),
00023 SelectEvents = cms.untracked.PSet(
00024 SelectEvents = cms.vstring('electronFilterWPath',
00025 'muonFilterWPath')
00026 ),
00027 fileName = cms.untracked.string('WJetFilteredRECOSIM.root')
00028 )
00029
00030