CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EXOHSCPSignal_EventContent_cfi.py
Go to the documentation of this file.
3 
4 exoticaHSCPOutputModule = cms.OutputModule("PoolOutputModule",
5  outputCommands = cms.untracked.vstring(),
6  SelectEvents = cms.untracked.PSet(
7  SelectEvents = cms.vstring("exoticaHSCPDedxSkimPath","exoticaHSCPMuonSkimPath") #the selector name must be same as the path name in EXOHSCPSignal_cfg.py in test directory.
8  ),
9  dataset = cms.untracked.PSet(
10  filterName = cms.untracked.string('EXOHSCPSignal'), #name a name you like.
11  dataTier = cms.untracked.string('EXOGroup')
12  ),
13  fileName = cms.untracked.string('exoticahscptest.root') # can be modified later in EXOHSCP_cfg.py in test directory.
14 )
15 
16 
17 #default output contentRECOSIMEventContent
18 exoticaHSCPOutputModule.outputCommands.extend(RECOSIMEventContent.outputCommands)
19 
20 #add specific content you need.
21 SpecifiedEvenetContent=cms.PSet(
22  outputCommands = cms.untracked.vstring(
23  "keep *_exotica*_*_*",
24  )
25  )
26 exoticaHSCPOutputModule.outputCommands.extend(SpecifiedEvenetContent.outputCommands)
27 
28