Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 trackerDrivenElectronSeeds = cms.EDProducer("GoodSeedProducer",
00004 MaxEOverP = cms.double(3.0),
00005 Smoother = cms.string('GsfTrajectorySmoother_forPreId'),
00006 UseQuality = cms.bool(True),
00007 PFPSClusterLabel = cms.InputTag("particleFlowClusterPS"),
00008 ThresholdFile = cms.string('RecoParticleFlow/PFTracking/data/Threshold.dat'),
00009 TMVAMethod = cms.string('BDT'),
00010 MaxEta = cms.double(2.4),
00011 EtaMap = cms.string('RecoParticleFlow/PFBlockProducer/data/resmap_ECAL_eta.dat'),
00012 PhiMap = cms.string('RecoParticleFlow/PFBlockProducer/data/resmap_ECAL_phi.dat'),
00013 PreCkfLabel = cms.string('SeedsForCkf'),
00014 NHitsInSeed = cms.int32(3),
00015 Fitter = cms.string('GsfTrajectoryFitter_forPreId'),
00016 PreGsfLabel = cms.string('SeedsForGsf'),
00017 MinEOverP = cms.double(0.3),
00018 Weights = cms.string('RecoParticleFlow/PFTracking/data/BDT_weights_21.txt'),
00019 PFEcalClusterLabel = cms.InputTag("particleFlowClusterECAL"),
00020 PFHcalClusterLabel = cms.InputTag("particleFlowClusterHCAL"),
00021 PSThresholdFile = cms.string('RecoParticleFlow/PFTracking/data/PSThreshold.dat'),
00022 MinPt = cms.double(2.0),
00023 TkColList = cms.VInputTag(cms.InputTag("generalTracks")),
00024 UseTMVA = cms.untracked.bool(True),
00025 TrackQuality = cms.string('highPurity'),
00026 MaxPt = cms.double(50.0),
00027 ApplyIsolation = cms.bool(False),
00028 EcalStripSumE_deltaPhiOverQ_minValue = cms.double(-0.1),
00029 EcalStripSumE_minClusEnergy = cms.double(0.1),
00030 EcalStripSumE_deltaEta = cms.double(0.03),
00031 EcalStripSumE_deltaPhiOverQ_maxValue = cms.double(0.5),
00032 EOverPLead_minValue = cms.double(0.95),
00033 HOverPLead_maxValue = cms.double(0.05),
00034 HcalWindow=cms.double(0.184),
00035 ClusterThreshold = cms.double(0.5),
00036 UsePreShower =cms.bool(False),
00037 PreIdLabel = cms.string('preid'),
00038 ProducePreId = cms.untracked.bool(True),
00039 PtThresholdSavePreId = cms.untracked.double(1.0)
00040 )
00041
00042