CMS 3D CMS Logo

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