CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/SUSYBSMAnalysis/Skimming/python/EXOTriLepton_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 exoticaTriLeptonOutputModule = cms.OutputModule("PoolOutputModule",
00006     outputCommands = cms.untracked.vstring(),
00007     SelectEvents = cms.untracked.PSet(
00008        SelectEvents = cms.vstring("exoticaTriMuonSkimPath","exoticaTriElectronSkimPath","exotica1E2MuSkimPath","exotica2E1MuSkimPath") 
00009 #the selector name must be same as the path name in EXOTriLepton_cfg.py in test directory.
00010       ),
00011     dataset = cms.untracked.PSet(
00012         filterName = cms.untracked.string('EXOTriLepton'), #name a name you like.
00013         dataTier = cms.untracked.string('EXOGroup')
00014     ),
00015     fileName = cms.untracked.string('exoticatrileptontest.root') # can be modified later in EXOTriLepton_cfg.py in  test directory. 
00016   )
00017 
00018 
00019 #default output contentRECOSIMEventContent
00020 exoticaTriLeptonOutputModule.outputCommands.extend(RECOSIMEventContent.outputCommands)
00021 
00022 #add specific content you need. 
00023 SpecifiedEvenetContent=cms.PSet(
00024     outputCommands = cms.untracked.vstring(
00025       "keep *_exotica*_*_*",
00026       )
00027     )
00028 exoticaTriLeptonOutputModule.outputCommands.extend(SpecifiedEvenetContent.outputCommands)
00029 
00030 
00031