CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/SUSYBSMAnalysis/Skimming/python/EXOHSCPSignal_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 exoticaHSCPOutputModule = cms.OutputModule("PoolOutputModule",
00005     outputCommands = cms.untracked.vstring(),
00006     SelectEvents = cms.untracked.PSet(
00007        SelectEvents = cms.vstring("exoticaHSCPDedxSkimPath","exoticaHSCPMuonSkimPath") #the selector name must be same as the path name in EXOHSCPSignal_cfg.py in test directory.
00008       ),
00009     dataset = cms.untracked.PSet(
00010         filterName = cms.untracked.string('EXOHSCPSignal'), #name a name you like.
00011         dataTier = cms.untracked.string('EXOGroup')
00012     ),
00013     fileName = cms.untracked.string('exoticahscptest.root') # can be modified later in EXOHSCP_cfg.py in  test directory. 
00014 )
00015 
00016 
00017 #default output contentRECOSIMEventContent
00018 exoticaHSCPOutputModule.outputCommands.extend(RECOSIMEventContent.outputCommands)
00019 
00020 #add specific content you need. 
00021 SpecifiedEvenetContent=cms.PSet(
00022     outputCommands = cms.untracked.vstring(
00023       "keep *_exotica*_*_*",      
00024       )
00025     )
00026 exoticaHSCPOutputModule.outputCommands.extend(SpecifiedEvenetContent.outputCommands)
00027 
00028