Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007
00008 from RecoEgamma.EgammaElectronProducers.ecalDrivenElectronSeedsParameters_cff import *
00009
00010 fastElectronSeeds = cms.EDProducer("FastElectronSeedProducer",
00011 endcapSuperClusters = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower"),
00012 SeedConfiguration = cms.PSet(
00013 ecalDrivenElectronSeedsParameters
00014 ),
00015 beamSpot = cms.InputTag("offlineBeamSpot"),
00016
00017 barrelSuperClusters = cms.InputTag("correctedHybridSuperClusters"),
00018 simTracks = cms.InputTag("famosSimHits"),
00019
00020 pTMin = cms.double(3.0),
00021 trackerHits = cms.InputTag("siTrackerGaussianSmearingRecHits","TrackerGSMatchedRecHits")
00022 )
00023
00024