1 import FWCore.ParameterSet.Config
as cms
13 globalPixelTrackCandidates = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone(
14 src = cms.InputTag(
"globalPixelSeeds")
19 globalPixelWithMaterialTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone(
20 src =
'globalPixelTrackCandidates',
21 TTRHBuilder =
'WithoutRefit',
22 Fitter =
'KFFittingSmootherWithOutlierRejection',
23 Propagator =
'PropagatorWithMaterial',
24 TrajectoryInEvent = cms.bool(
True),
35 import FastSimulation.Tracking.FastTrackerRecHitMaskProducer_cfi
36 globalPixelMasksForElectrons = FastSimulation.Tracking.FastTrackerRecHitMaskProducer_cfi.fastTrackerRecHitMaskProducer.clone(
37 trajectories = cms.InputTag(
"globalPixelWithMaterialTracks")
41 from FastSimulation.Tracking.GlobalPixelSeedProducerForElectrons_cff
import globalPixelSeedsForElectrons
42 globalPixelSeedsForElectrons.hitMasks = cms.InputTag(
"globalPixelMasksForElectrons")
46 globalPixelTrackCandidatesForElectrons = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone(
47 src = cms.InputTag(
"globalPixelSeedsForElectrons"),
48 hitMasks = cms.InputTag(
"globalPixelMasksForElectrons")
52 globalPixelWithMaterialTracksForElectrons = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone(
53 src =
'globalPixelTrackCandidatesForElectrons',
54 TTRHBuilder =
'WithoutRefit',
55 Fitter =
'KFFittingSmootherWithOutlierRejection',
56 Propagator =
'PropagatorWithMaterial',
57 TrajectoryInEvent = cms.bool(
True)
65 from FastSimulation.Tracking.GlobalPixelSeedProducerForElectrons_cff
import globalPixelSeedsForPhotons
66 globalPixelSeedsForPhotons.hitMasks = cms.InputTag(
"globalPixelMasksForElectrons")
69 globalPixelTrackCandidatesForPhotons = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone(
70 src = cms.InputTag(
"globalPixelSeedsForPhotons"),
71 hitMasks = cms.InputTag(
"globalPixelMasksForElectrons")
75 globalPixelWithMaterialTracksForPhotons = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone(
76 src =
'globalPixelTrackCandidatesForPhotons',
77 TTRHBuilder =
'WithoutRefit',
78 Fitter =
'KFFittingSmootherWithOutlierRejection',
79 Propagator =
'PropagatorWithMaterial',
80 TrajectoryInEvent = cms.bool(
True)
86 globalPixelTracking = cms.Sequence(globalPixelSeeds*
87 globalPixelTrackCandidates*
88 globalPixelWithMaterialTracks*
89 globalPixelMasksForElectrons*
90 globalPixelSeedsForElectrons*
91 globalPixelTrackCandidatesForElectrons*
92 globalPixelWithMaterialTracksForElectrons*
93 globalPixelSeedsForPhotons*
94 globalPixelTrackCandidatesForPhotons*
95 globalPixelWithMaterialTracksForPhotons)