File indexing completed on 2024-11-23 03:28:19
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def LowPtGsfElectronSeedProducer(*args, **kwargs):
0004 mod = cms.EDProducer('LowPtGsfElectronSeedProducer',
0005 tracks = cms.InputTag('generalTracks'),
0006 pfTracks = cms.InputTag('lowPtGsfElePfTracks'),
0007 ecalClusters = cms.InputTag('particleFlowClusterECAL'),
0008 hcalClusters = cms.InputTag('particleFlowClusterHCAL'),
0009 EBRecHits = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
0010 EERecHits = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
0011 rho = cms.InputTag('fixedGridRhoFastjetAllTmp'),
0012 BeamSpot = cms.InputTag('offlineBeamSpot'),
0013 Fitter = cms.ESInputTag('', 'GsfTrajectoryFitter_forPreId'),
0014 Smoother = cms.ESInputTag('', 'GsfTrajectorySmoother_forPreId'),
0015 TTRHBuilder = cms.ESInputTag('', 'WithAngleAndTemplate'),
0016 ModelNames = cms.vstring(),
0017 ModelWeights = cms.vstring(),
0018 ModelThresholds = cms.vdouble(),
0019 PassThrough = cms.bool(False),
0020 UsePfTracks = cms.bool(True),
0021 MinPtThreshold = cms.double(1),
0022 MaxPtThreshold = cms.double(15),
0023 mightGet = cms.optional.untracked.vstring
0024 )
0025 for a in args:
0026 mod.update_(a)
0027 mod.update_(kwargs)
0028 return mod