CMS 3D CMS Logo

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