CMS 3D CMS Logo

alcastreamElectron_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # run on collection of electrons to make a collection of AlCaReco electrons
5 # and store them in the output collection
6 #
7 # hybrid clustering in the barrel
9 # island clustering for the endcaps
12 # sequence to make si-strip based electrons
14 electronFilter = cms.EDFilter("EtaPtMinGsfElectronFullCloneSelector",
15  filter = cms.bool(True),
16  src = cms.InputTag("gedGsfElectrons"),
17  etaMin = cms.double(-2.7),
18  etaMax = cms.double(2.7),
19  ptMin = cms.double(5.0)
20 )
21 
22 seqAlcastreamElectron = cms.Sequence(electronFilter*alCaIsolatedElectrons)
23