CMS 3D CMS Logo

electronCountFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # module to filter on the number of Electrons
4 countPatElectrons = cms.EDFilter("PATCandViewCountFilter",
5  minNumber = cms.uint32(0),
6  maxNumber = cms.uint32(999999),
7  src = cms.InputTag("cleanPatElectrons")
8 )
9 
10