File indexing completed on 2024-10-16 05:06:30
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006
0007
0008 from RecoEgamma.EgammaElectronProducers.ecalDrivenElectronSeeds_cfi import ecalDrivenElectronSeeds
0009 from RecoTracker.IterativeTracking.ElectronSeeds_cff import newCombinedSeeds
0010
0011 ecalDrivenElectronSeeds.initialSeedsVector = newCombinedSeeds.seedCollections
0012
0013 from Configuration.ProcessModifiers.pp_on_AA_cff import pp_on_AA
0014 pp_on_AA.toModify(ecalDrivenElectronSeeds, SCEtCut = 15.0)
0015
0016 from Configuration.Eras.Modifier_phase2_hgcal_cff import phase2_hgcal
0017 phase2_hgcal.toModify(
0018 ecalDrivenElectronSeeds,
0019 endcapSuperClusters = 'particleFlowSuperClusterHGCal',
0020 allowHGCal = True,
0021 )
0022 phase2_hgcal.toModify(
0023 ecalDrivenElectronSeeds.HGCalConfig,
0024 hgcalHitMap = cms.InputTag("recHitMapProducer", "hgcalRecHitMap"),
0025 )
0026
0027 from Configuration.ProcessModifiers.egamma_lowPt_exclusive_cff import egamma_lowPt_exclusive
0028 egamma_lowPt_exclusive.toModify(ecalDrivenElectronSeeds,
0029 LowPtThreshold =1.0,
0030 applyHOverECut = False)
0031