CMS 3D CMS Logo

electronSelector_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # module to select Electrons
4 # See https://twiki.cern.ch/twiki/bin/view/CMS/SWGuidePhysicsCutParser
5 # on how to use the cut-string
6 #
7 selectedPatElectrons = cms.EDFilter("PATElectronSelector",
8  src = cms.InputTag("patElectrons"),
9  cut = cms.string("")
10 )
11 
12