Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 #  run on collection of electrons to make a collection of AlCaReco electrons 
0005 #  and store them in the output collection
0006 #
0007 # hybrid clustering in the barrel
0008 from RecoEcal.EgammaClusterProducers.hybridClusteringSequence_cff import *
0009 # island clustering for the endcaps
0010 from RecoEcal.EgammaClusterProducers.islandClusteringSequence_cff import *
0011 from Geometry.CaloEventSetup.CaloGeometry_cfi import *
0012 # sequence to make si-strip based electrons
0013 from Calibration.EcalAlCaRecoProducers.alCaIsolatedElectrons_cfi import *
0014 electronFilter = cms.EDFilter("EtaPtMinGsfElectronFullCloneSelector",
0015     filter = cms.bool(True),
0016     src = cms.InputTag("gedGsfElectrons"),
0017     etaMin = cms.double(-2.7),
0018     etaMax = cms.double(2.7),
0019     ptMin = cms.double(5.0)
0020 )
0021 
0022 seqAlcastreamElectron = cms.Sequence(electronFilter*alCaIsolatedElectrons)
0023