Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:24

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def LowPtGsfElectronSeedProducer(**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 k,v in kwargs.items():
0026     setattr(mod, k, v)
0027   return mod