CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EXODiLepton_EventContent_cfi.py
Go to the documentation of this file.
3 
4 
5 exoticaDiLeptonOutputModule = cms.OutputModule("PoolOutputModule",
6  outputCommands = cms.untracked.vstring(),
7  SelectEvents = cms.untracked.PSet(
8  SelectEvents = cms.vstring("exoticaDiMuonSkimPath","exoticaDiElectronSkimPath","exoticaEMuSkimPath")
9 #the selector name must be same as the path name in EXODiLepton_cfg.py in test directory.
10  ),
11  dataset = cms.untracked.PSet(
12  filterName = cms.untracked.string('EXODiLepton'), #name a name you like.
13  dataTier = cms.untracked.string('EXOGroup')
14  ),
15  fileName = cms.untracked.string('exoticadileptontest.root') # can be modified later in EXODiLepton_cfg.py in test directory.
16  )
17 
18 
19 #default output contentRECOSIMEventContent
20 exoticaDiLeptonOutputModule.outputCommands.extend(RECOSIMEventContent.outputCommands)
21 
22 #add specific content you need.
23 SpecifiedEvenetContent=cms.PSet(
24  outputCommands = cms.untracked.vstring(
25  "keep *_exoticaHLTDiMuonFilter_*_*",
26  "keep *_exoticaHLTDiElectronFilter_*_*",
27  "keep *_exoticaHLTElectronFilter_*_*",
28  "keep *_exoticaHLTMuonFilter_*_*",
29  "keep *_exoticaRecoDiMuonFilter_*_*",
30  "keep *_exoticaRecoDiElectronFilter_*_*",
31  "keep *_exoticaRecoMuonFilter_*_*",
32  "keep *_exoticaRecoElectronFilter_*_*",
33  )
34  )
35 exoticaDiLeptonOutputModule.outputCommands.extend(SpecifiedEvenetContent.outputCommands)
36 
37 
38