CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
alcastreamElectron_cff.py
Go to the documentation of this file.
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
15 electronFilter = cms.EDFilter("EtaPtMinGsfElectronFullCloneSelector",
16  filter = cms.bool(True),
17  src = cms.InputTag("gedGsfElectrons"),
18  etaMin = cms.double(-2.7),
19  etaMax = cms.double(2.7),
20  ptMin = cms.double(5.0)
21 )
22 
23 # sequence alcastreamElectron = {hybridClusteringSequence, islandClusteringSequence,electronSequence, alCaIsolatedElectrons}
24 # this is the full path if you start from uncalibrated RecHits
25 # path alcastreamElectron = {hybridClusteringSequence, islandClusteringSequence,electronSequence, alCaIsolatedElectrons}
26 # use this if siStripElectrons are already present
27 # path alcastreamElectron = {alCaIsolatedElectrons}
28 seqAlcastreamElectron = cms.Sequence(electronFilter*alCaIsolatedElectrons)
29