CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/SUSYBSMAnalysis/Skimming/python/EXODiLepton_EventContent_cfi.py

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 #the selector name must be same as the path name in EXODiLepton_cfg.py in test directory.
00010       ),
00011     dataset = cms.untracked.PSet(
00012         filterName = cms.untracked.string('EXODiLepton'), #name a name you like.
00013         dataTier = cms.untracked.string('EXOGroup')
00014     ),
00015     fileName = cms.untracked.string('exoticadileptontest.root') # can be modified later in EXODiLepton_cfg.py in  test directory. 
00016   )
00017 
00018 
00019 #default output contentRECOSIMEventContent
00020 exoticaDiLeptonOutputModule.outputCommands.extend(RECOSIMEventContent.outputCommands)
00021 
00022 #add specific content you need. 
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