CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
alcastreamElectronOutput_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # output block for alcastream Electron
4 # output module
5 # module alcastreamElecronOutput = PoolOutputModule
6 alcastreamElectronOutput = cms.PSet(
7  # put this when we have a filter
8  SelectEvents = cms.untracked.PSet(
9  SelectEvents = cms.vstring('pathAlcastreamElectron')
10  ),
11  outputCommands = cms.untracked.vstring('drop *',
12  'keep TrackCandidates_gedGsfElectrons_*_*',
13  'keep *_electronFilter_*_*',
14  'keep *_alCaIsolatedElectrons_*_*')
15 )
16