Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 import RecoTracker.TkSeedGenerator.GlobalPixelSeeds_cff
00004 regionalSeedsForL3Isolation = RecoTracker.TkSeedGenerator.GlobalPixelSeeds_cff.globalPixelSeeds.clone()
00005 import RecoTracker.CkfPattern.CkfTrackCandidates_cfi
00006 regionalCandidatesForL3Isolation = RecoTracker.CkfPattern.CkfTrackCandidates_cfi.ckfTrackCandidates.clone()
00007 import RecoTracker.TrackProducer.TrackProducer_cfi
00008 regionalTracksForL3Isolation = RecoTracker.TrackProducer.TrackProducer_cfi.TrackProducer.clone()
00009 regionalCKFTracksForL3Isolation = cms.Sequence(regionalSeedsForL3Isolation*regionalCandidatesForL3Isolation*regionalTracksForL3Isolation)
00010 regionalSeedsForL3Isolation.RegionFactoryPSet.ComponentName = 'IsolationRegionAroundL3Muon'
00011 regionalSeedsForL3Isolation.RegionFactoryPSet.RegionPSet = cms.PSet(
00012 deltaPhiRegion = cms.double(0.24),
00013 TrkSrc = cms.InputTag("L3Muons"),
00014 originHalfLength = cms.double(15.0),
00015 deltaEtaRegion = cms.double(0.24),
00016 vertexZDefault = cms.double(0.0),
00017 vertexSrc = cms.string(''),
00018 originRadius = cms.double(0.2),
00019 vertexZConstrained = cms.bool(False),
00020 ptMin = cms.double(1.0),
00021 measurementTrackerName = cms.string("")
00022 )
00023 regionalCandidatesForL3Isolation.src = cms.InputTag('regionalSeedsForL3Isolation')
00024 regionalTracksForL3Isolation.src = 'regionalCandidatesForL3Isolation'
00025
00026