Exemple #1
0
    fitFastCircle = True,
    fitFastCircleChi2Cut = True,
    CAThetaCut = 0.0017,
    CAPhiCut = 0.3,
)
trackingPhase2PU140.toModify(lowPtQuadStepHitQuadruplets,CAThetaCut = 0.0015,CAPhiCut = 0.25)

from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer
lowPtQuadStepSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets = "lowPtQuadStepHitQuadruplets",
)

trackingPhase1QuadProp.toModify(lowPtQuadStepHitDoublets, layerPairs = [0])
lowPtQuadStepHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "lowPtQuadStepHitDoublets",
    produceIntermediateHitTriplets = True,
    SeedComparitorPSet = lowPtQuadStepHitQuadruplets.SeedComparitorPSet,
)
from RecoPixelVertexing.PixelTriplets.pixelQuadrupletEDProducer_cfi import pixelQuadrupletEDProducer as _pixelQuadrupletEDProducer
_lowPtQuadStepHitQuadruplets_propagation = _pixelQuadrupletEDProducer.clone(
    triplets = "lowPtQuadStepHitTriplets",
    extraHitRZtolerance = lowPtQuadStepHitTriplets.extraHitRZtolerance,
    extraHitRPhitolerance = lowPtQuadStepHitTriplets.extraHitRPhitolerance,
    maxChi2 = dict(
        pt1    = 0.8  , pt2    = 2,
        value1 = 2000, value2 = 100,
        enabled = True,
    ),
    extraPhiTolerance = dict(
        pt1    = 0.3, pt2    = 1,
        value1 = 0.4, value2 = 0.05,
Exemple #2
0
    VertexCollection = "hiSelectedVertex",
    ptMin = 0.4,
    useFoundVertices = True,
    originRadius = 0.02
))
hiLowPtTripletStepTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck = "",
    seedingLayers = "hiLowPtTripletStepSeedLayers",
    trackingRegions = "hiLowPtTripletStepTrackingRegions",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)
import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi
hiLowPtTripletStepTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "hiLowPtTripletStepTracksHitDoublets",
    #maxElement = 5000000,
    SeedComparitorPSet = RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone(),
    produceSeedingHitSets = True,
)

from RecoPixelVertexing.PixelTriplets.caHitTripletEDProducer_cfi import caHitTripletEDProducer as _caHitTripletEDProducer
hiLowPtTripletStepTracksHitDoubletsCA = hiLowPtTripletStepTracksHitDoublets.clone()
hiLowPtTripletStepTracksHitDoubletsCA.layerPairs = [0,1]

hiLowPtTripletStepTracksHitTripletsCA = _caHitTripletEDProducer.clone(
    doublets = "hiLowPtTripletStepTracksHitDoubletsCA",
    extraHitRPhitolerance = hiLowPtTripletStepTracksHitTriplets.extraHitRPhitolerance,
    SeedComparitorPSet = hiLowPtTripletStepTracksHitTriplets.SeedComparitorPSet,
    maxChi2 = dict(
        pt1    = 0.8, pt2    = 2,
        value1 = 70 , value2 = 8,
    ),
from RecoPixelVertexing.PixelTrackFitting.pixelFitterByConformalMappingAndLine_cfi import *
from RecoHI.HiTracking.HIPixelTrackFilter_cff import *
from RecoHI.HiTracking.HITrackingRegionProducer_cfi import *

# Hit ntuplets
hiConformalPixelTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck    = "",
    seedingLayers   = "PixelLayerTriplets",
    trackingRegions = "hiTrackingRegionWithVertex",
    maxElement      = 50000000,
    produceIntermediateHitDoublets = True,
)

hiConformalPixelTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets   = "hiConformalPixelTracksHitDoublets",
    maxElement = 5000000, # increase threshold for triplets in generation step (default: 100000)
    produceSeedingHitSets = True,
)

import RecoPixelVertexing.PixelTrackFitting.pixelTracks_cfi as _mod
# Pixel tracks
hiConformalPixelTracks = _mod.pixelTracks.clone(
    #passLabel  = 'Pixel triplet low-pt tracks with vertex constraint',
    # Ordered Hits
    SeedingHitSets = "hiConformalPixelTracksHitTriplets",
    # Fitter
    Fitter = 'pixelFitterByConformalMappingAndLine',
    # Filter
    Filter = "hiConformalPixelFilter",   
    # Cleaner
    Cleaner = "trackCleaner"
Exemple #4
0
def addL3ToHLT(process):
    def filters_by_type(process, type):
        return (filter for filter in process._Process__filters.values()
                if filter._TypedParameterizable__type == type)

    for l3Filter in filters_by_type(process, 'HLTMuonL3PreFilter'):
        if hasattr(l3Filter, 'CandTag'):
            if (l3Filter.CandTag == cms.InputTag("hltL3MuonCandidates")):
                l3Filter.CandTag = cms.InputTag("hltIterL3MuonCandidates")
                l3Filter.InputLinks = cms.InputTag(
                    "hltIterL3MuonsLinksCombination")

    if hasattr(process, 'hltPixelTracksForSeedsL3Muon'):
        process.hltPixelTracksForSeedsL3Muon.RegionFactoryPSet.RegionPSet.input = cms.InputTag(
            "hltIterL3MuonCandidates")
    if hasattr(process, 'hltIter1L3MuonPixelSeeds'):
        process.hltIter1L3MuonPixelSeeds.RegionFactoryPSet.RegionPSet.input = cms.InputTag(
            "hltIterL3MuonCandidates")
    if hasattr(process, 'hltIter2L3MuonPixelSeeds'):
        process.hltIter2L3MuonPixelSeeds.RegionFactoryPSet.RegionPSet.input = cms.InputTag(
            "hltIterL3MuonCandidates")

    def producers_by_type(process, type):
        return (module for module in process._Process__producers.values()
                if module._TypedParameterizable__type == type)

    for PFModule in producers_by_type(process,
                                      'MuonHLTRechitInRegionsProducer'):
        if hasattr(PFModule, 'l1TagIsolated'):
            if (PFModule.l1TagIsolated == cms.InputTag("hltL3MuonCandidates")):
                PFModule.l1TagIsolated = cms.InputTag(
                    "hltIterL3MuonCandidates")
    #Isolation paths:
    for PFModule in producers_by_type(
            process, 'L3MuonCombinedRelativeIsolationProducer'):
        if hasattr(PFModule, 'inputMuonCollection'):
            if (PFModule.inputMuonCollection == cms.InputTag(
                    "hltL3MuonCandidates")):
                PFModule.inputMuonCollection = cms.InputTag(
                    "hltIterL3MuonCandidates")

    for l3Filter in filters_by_type(process, 'HLTMuonIsoFilter'):
        if hasattr(l3Filter, 'CandTag'):
            if (l3Filter.CandTag == cms.InputTag("hltL3MuonCandidates")):
                l3Filter.CandTag = cms.InputTag("hltIterL3MuonCandidates")

    for l3Filter in filters_by_type(process, 'HLTMuonDimuonL3Filter'):
        if hasattr(l3Filter, 'CandTag'):
            if (l3Filter.CandTag == cms.InputTag("hltL3MuonCandidates")):
                l3Filter.CandTag = cms.InputTag("hltIterL3MuonCandidates")

    if hasattr(process, 'hltMuonEcalPFClusterIsoForMuons'):
        process.hltMuonEcalPFClusterIsoForMuons.recoCandidateProducer = cms.InputTag(
            "hltIterL3MuonCandidates")

    if hasattr(process, 'hltDiMuonLinks'):
        process.hltDiMuonLinks.LinkCollection = cms.InputTag(
            "hltIterL3MuonsLinksCombination")
    #############################################################
    #Making Pixel Vertices:
    from RecoTracker.TkTrackingRegions.globalTrackingRegionFromBeamSpot_cfi import globalTrackingRegionFromBeamSpot as _globalTrackingRegionFromBeamSpot
    from RecoTracker.TkHitPairs.hitPairEDProducer_cfi import hitPairEDProducer as _hitPairEDProducer
    from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
    from RecoPixelVertexing.PixelTrackFitting.pixelTrackFilterByKinematics_cfi import pixelTrackFilterByKinematics as _pixelTrackFilterByKinematics
    from RecoPixelVertexing.PixelTrackFitting.pixelFitterByHelixProjections_cfi import pixelFitterByHelixProjections as _pixelFitterByHelixProjections
    from RecoPixelVertexing.PixelTrackFitting.pixelTrackCleanerBySharedHits_cfi import pixelTrackCleanerBySharedHits as _pixelTrackCleanerBySharedHits
    process.hltPixelTracksTrackingRegions = _globalTrackingRegionFromBeamSpot.clone(
        precise=True,
        originRadius=0.2,
        ptMin=0.9,
        originHalfLength=24.0,
        beamSpot="hltOnlineBeamSpot")
    process.hltPixelTracksHitDoublets = _hitPairEDProducer.clone(
        clusterCheck="",
        seedingLayers="hltPixelLayerTriplets",
        trackingRegions="hltPixelTracksTrackingRegions",
        maxElement=0,
        produceIntermediateHitDoublets=True,
    )
    process.hltPixelTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
        useBending=True,
        useFixedPreFiltering=False,
        maxElement=100000,
        phiPreFiltering=0.3,
        extraHitRPhitolerance=0.06,
        useMultScattering=True,
        SeedComparitorPSet=dict(
            ComponentName="LowPtClusterShapeSeedComparitor",
            clusterShapeCacheSrc=cms.InputTag("hltSiPixelClustersCache")),
        extraHitRZtolerance=0.06,
    )
    process.hltPixelTracksFitter = _pixelFitterByHelixProjections.clone()
    process.hltPixelTrackFilterByKinematics = _pixelTrackFilterByKinematics.clone(
    )
    process.hltPixelTracksCleaner = _pixelTrackCleanerBySharedHits.clone(
        ComponentName="hltPixelTracksCleaner", )
    process.hltPixelTracks = cms.EDProducer(
        "PixelTrackProducer",
        Filter=cms.InputTag("hltPixelTrackFilterByKinematics"),
        passLabel=cms.string(
            "Pixel triplet primary tracks with vertex constraint"),
        FitterPSet=cms.InputTag("hltPixelTracksFitter"),
        Cleaner=cms.string("hltPixelTracksCleaner"),
        SeedingHitSets=cms.InputTag("hltPixelTracksHitTriplets"),
    )

    process.hltPixelVertices = cms.EDProducer(
        "PixelVertexProducer",
        WtAverage=cms.bool(True),
        Method2=cms.bool(True),
        beamSpot=cms.InputTag("hltOnlineBeamSpot"),
        PVcomparer=cms.PSet(
            refToPSet_=cms.string("HLTPSetPvClusterComparerForIT")),
        Verbosity=cms.int32(0),
        UseError=cms.bool(True),
        TrackCollection=cms.InputTag("hltPixelTracks"),
        PtMin=cms.double(1.0),
        NTrkMin=cms.int32(2),
        ZOffset=cms.double(5.0),
        Finder=cms.string("DivisiveVertexFinder"),
        ZSeparation=cms.double(0.05))
    #/Making Pixel Vertices, could probably use the following PTP tho?

    process.HLTRecopixelvertexingSequence = cms.Sequence(
        process.hltPixelLayerTriplets + process.hltPixelTracksTrackingRegions +
        process.hltPixelTracksHitDoublets + process.hltPixelTracksHitTriplets +
        process.hltPixelTracksFitter +
        process.hltPixelTrackFilterByKinematics + process.hltPixelTracks +
        process.hltPixelVertices)

    ######### Define Master MTRB ROI, OPTIMISED FOR IO
    MasterMuonTrackingRegionBuilder = cms.PSet(
        Rescale_eta=cms.double(3.0),
        Rescale_phi=cms.double(3.0),
        Rescale_Dz=cms.double(4.0),
        EtaR_UpperLimit_Par1=cms.double(0.25),
        EtaR_UpperLimit_Par2=cms.double(0.15),
        PhiR_UpperLimit_Par1=cms.double(0.6),
        PhiR_UpperLimit_Par2=cms.double(0.2),
        UseVertex=cms.bool(False),
        Pt_fixed=cms.bool(False),
        Z_fixed=cms.bool(False),
        Phi_fixed=cms.bool(True),
        Eta_fixed=cms.bool(True),
        Pt_min=cms.double(3.0),
        Phi_min=cms.double(0.1),
        Eta_min=cms.double(0.1),
        DeltaZ=cms.double(24.2),
        DeltaR=cms.double(0.025),
        DeltaEta=cms.double(0.2),
        DeltaPhi=cms.double(0.15),
        maxRegions=cms.int32(2),
        precise=cms.bool(True),
        OnDemand=cms.int32(-1),
        MeasurementTrackerName=cms.InputTag("hltESPMeasurementTracker"),
        beamSpot=cms.InputTag("hltOnlineBeamSpot"),
        vertexCollection=cms.InputTag("pixelVertices"),
        input=cms.InputTag('hltL2Muons', 'UpdatedAtVtx'))

    IterMasterMuonTrackingRegionBuilder = MasterMuonTrackingRegionBuilder
    IterMasterMuonTrackingRegionBuilder.input = cms.InputTag(
        'hltL2SelectorForL3OI')  #Switch off for IO Only

    ########## OI Algorthim:
    #Trajectory Filter
    process.HLTPSetCkfTrajectoryFilterIterL3OI = cms.PSet(
        minPt=cms.double(0.9),
        minHitsMinPt=cms.int32(3),
        ComponentType=cms.string("CkfBaseTrajectoryFilter"),
        maxLostHits=cms.int32(1),
        maxNumberOfHits=cms.int32(-1),
        maxConsecLostHits=cms.int32(1),
        minimumNumberOfHits=cms.int32(5),
        nSigmaMinPt=cms.double(5.0),
        chargeSignificance=cms.double(-1.0),
        minGoodStripCharge=cms.PSet(
            refToPSet_=cms.string("HLTSiStripClusterChargeCutNone")),
        maxCCCLostHits=cms.int32(9999),
        seedExtension=cms.int32(0),
        strictSeedExtension=cms.bool(False),
        minNumberOfHitsForLoopers=cms.int32(13),
        minNumberOfHitsPerLoop=cms.int32(4),
        extraNumberOfHitsBeforeTheFirstLoop=cms.int32(4),
        maxLostHitsFraction=cms.double(999.0),
        constantValueForLostHitsFractionFilter=cms.double(1.0),
        seedPairPenalty=cms.int32(0))

    process.HLTPSetCkfTrajectoryBuilderIterL3OI = cms.PSet(
        propagatorAlong=cms.string("PropagatorWithMaterial"),
        trajectoryFilter=cms.PSet(
            refToPSet_=cms.string("HLTPSetCkfTrajectoryFilterIterL3OI")),
        maxCand=cms.int32(5),
        ComponentType=cms.string("CkfTrajectoryBuilder"),
        propagatorOpposite=cms.string("PropagatorWithMaterialOpposite"),
        MeasurementTrackerName=cms.string("hltESPMeasurementTracker"),
        estimator=cms.string("hltESPChi2MeasurementEstimator30"),
        TTRHBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
        updator=cms.string("hltESPKFUpdator"),
        alwaysUseInvalidHits=cms.bool(True),
        intermediateCleaning=cms.bool(True),
        lostHitPenalty=cms.double(1.0))

    process.hltESPChi2MeasurementEstimator100 = cms.ESProducer(
        "Chi2MeasurementEstimatorESProducer",
        MaxChi2=cms.double(100.0),
        nSigma=cms.double(4.0),
        ComponentName=cms.string("hltESPChi2MeasurementEstimator100"))

    #OI Seeding:
    process.hltIterL3OISeedsFromL2Muons = cms.EDProducer(
        "TSGForOI",
        MeasurementTrackerEvent=cms.InputTag("hltSiStripClusters"),
        UseHitSeeds=cms.bool(True),
        adjustErrorsDynamicallyForHitless=cms.bool(True),
        adjustErrorsDynamicallyForHits=cms.bool(True),
        debug=cms.untracked.bool(False),
        estimator=cms.string('hltESPChi2MeasurementEstimator100'),
        fixedErrorRescaleFactorForHitless=cms.double(5.0),
        fixedErrorRescaleFactorForHits=cms.double(2.0),
        pT1=cms.double(13.0),
        pT2=cms.double(30.0),
        pT3=cms.double(70.0),
        eta1=cms.double(1.0),
        eta2=cms.double(1.4),
        SF1=cms.double(3.0),
        SF2=cms.double(4.0),
        SF3=cms.double(5.0),
        SF4=cms.double(7.0),
        SF5=cms.double(10.0),
        hitsToTry=cms.int32(5),
        layersToTry=cms.int32(3),
        maxEtaForTOB=cms.double(1.1),
        maxSeeds=cms.uint32(1),
        minEtaForTEC=cms.double(0.9),
        src=cms.InputTag("hltL2Muons", "UpdatedAtVtx"))

    ###---------- Trajectory Cleaner, deciding how overlapping track candidates are arbitrated  ----------------
    import TrackingTools.TrajectoryCleaning.TrajectoryCleanerBySharedHits_cfi
    process.muonSeededTrajectoryCleanerBySharedHits = TrackingTools.TrajectoryCleaning.TrajectoryCleanerBySharedHits_cfi.trajectoryCleanerBySharedHits.clone(
        ComponentName=cms.string('muonSeededTrajectoryCleanerBySharedHits'),
        fractionShared=cms.double(0.1),
        ValidHitBonus=cms.double(1000.0),
        MissingHitPenalty=cms.double(1.0),
        ComponentType=cms.string('TrajectoryCleanerBySharedHits'),
        allowSharedFirstHit=cms.bool(True))

    #OI Trajectory Building:
    process.hltIterL3OITrackCandidates = cms.EDProducer(
        "CkfTrackCandidateMaker",
        RedundantSeedCleaner=cms.string('CachingSeedCleanerBySharedInput'),
        TrajectoryCleaner=cms.string('muonSeededTrajectoryCleanerBySharedHits'
                                     ),  #TrajectoryCleanerBySharedHits
        cleanTrajectoryAfterInOut=cms.bool(True),
        useHitsSplitting=cms.bool(True),
        doSeedingRegionRebuilding=cms.bool(True),
        maxNSeeds=cms.uint32(500000),
        maxSeedsBeforeCleaning=cms.uint32(5000),
        src=cms.InputTag('hltIterL3OISeedsFromL2Muons'),
        SimpleMagneticField=cms.string(''),
        NavigationSchool=cms.string('SimpleNavigationSchool'),
        TrajectoryBuilder=cms.string('CkfTrajectoryBuilder'),
        TrajectoryBuilderPSet=cms.PSet(
            refToPSet_=cms.string('HLTPSetCkfTrajectoryBuilderIterL3OI'
                                  )),  #Was HLTPSetCkfTrajectoryBuilder
        TransientInitialStateEstimatorParameters=cms.PSet(
            propagatorAlongTISE=cms.string('PropagatorWithMaterialParabolicMf'
                                           ),  # parabolic magnetic field
            propagatorOppositeTISE=cms.string(
                'PropagatorWithMaterialParabolicMfOpposite'
            ),  # parabolic magnetic field
            numberMeasurementsForFit=cms.int32(4)),
        MeasurementTrackerEvent=cms.InputTag("hltSiStripClusters"),
        reverseTrajectories=cms.bool(True),
    )

    ###-------------  Fitter-Smoother -------------------
    #	process.load("TrackingTools.MaterialEffects.RungeKuttaTrackerPropagator_cfi")
    #	import TrackingTools.TrackFitters.RungeKuttaFitters_cff
    process.load("TrackingTools.TrackFitters.RungeKuttaFitters_cff")

    process.RKTrajectoryFitter.Propagator = "hltESPRungeKuttaTrackerPropagator"
    process.RKTrajectorySmoother.Propagator = "hltESPRungeKuttaTrackerPropagator"
    process.RKTrajectoryFitter.Updator = "hltESPKFUpdator"
    process.RKTrajectorySmoother.Updator = "hltESPKFUpdator"
    process.RKTrajectoryFitter.Estimator = "hltESPChi2MeasurementEstimator30"
    process.RKTrajectorySmoother.Estimator = "hltESPChi2MeasurementEstimator30"
    process.RKTrajectoryFitter.RecoGeometry = "hltESPGlobalDetLayerGeometry"
    process.RKTrajectorySmoother.RecoGeometry = "hltESPGlobalDetLayerGeometry"

    process.muonSeededFittingSmootherWithOutliersRejectionAndRK = TrackingTools.TrackFitters.RungeKuttaFitters_cff.KFFittingSmootherWithOutliersRejectionAndRK.clone(
        ComponentName=cms.string(
            "muonSeededFittingSmootherWithOutliersRejectionAndRK"),
        BreakTrajWith2ConsecutiveMissing=cms.bool(False),
        EstimateCut=cms.double(50.),  ## was 20.
    )

    #OI Track Producer:
    process.hltIterL3MuonSeededTracksOutIn = cms.EDProducer(
        "TrackProducer",
        useSimpleMF=cms.bool(False),
        SimpleMagneticField=cms.string(""),
        src=cms.InputTag("hltIterL3OITrackCandidates"),  #Modified
        clusterRemovalInfo=cms.InputTag(""),
        beamSpot=cms.InputTag("hltOnlineBeamSpot"),  #Modified
        Fitter=cms.string(
            'muonSeededFittingSmootherWithOutliersRejectionAndRK'),  #Modified
        useHitsSplitting=cms.bool(False),
        alias=cms.untracked.string('ctfWithMaterialTracks'),
        TrajectoryInEvent=cms.bool(True),
        TTRHBuilder=cms.string(
            'hltESPTTRHBWithTrackAngle'),  #Was: WithAngleAndTemplate
        AlgorithmName=cms.string('iter10'),  #Modified
        Propagator=cms.string('hltESPRungeKuttaTrackerPropagator'
                              ),  #Others use PropagatorWithMaterial
        GeometricInnerState=cms.bool(False),
        NavigationSchool=cms.string(
            'SimpleNavigationSchool'),  #Others are blank        
        MeasurementTracker=cms.string("hltESPMeasurementTracker"),
        MeasurementTrackerEvent=cms.InputTag(
            'hltSiStripClusters'),  #Modified     
    )

    #OI L3 Muon Producer:
    process.hltL3MuonsIterL3OI = cms.EDProducer(
        "L3MuonProducer",
        ServiceParameters=cms.PSet(Propagators=cms.untracked.vstring(
            'hltESPSmartPropagatorAny', 'SteppingHelixPropagatorAny',
            'hltESPSmartPropagator', 'hltESPSteppingHelixPropagatorOpposite'),
                                   RPCLayers=cms.bool(True),
                                   UseMuonNavigation=cms.untracked.bool(True)),
        L3TrajBuilderParameters=cms.PSet(
            ScaleTECyFactor=cms.double(-1.0),
            GlbRefitterParameters=cms.PSet(
                TrackerSkipSection=cms.int32(-1),
                DoPredictionsOnly=cms.bool(False),
                PropDirForCosmics=cms.bool(False),
                HitThreshold=cms.int32(1),
                RefitFlag=cms.bool(True),  #Usually true
                MuonHitsOption=cms.int32(1),
                Chi2CutRPC=cms.double(1.0),
                Fitter=cms.string("hltESPL3MuKFTrajectoryFitter"),
                DTRecSegmentLabel=cms.InputTag("hltDt4DSegments"),
                TrackerRecHitBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
                MuonRecHitBuilder=cms.string(
                    "hltESPMuonTransientTrackingRecHitBuilder"),
                RefitDirection=cms.string("insideOut"),
                CSCRecSegmentLabel=cms.InputTag("hltCscSegments"),
                Chi2CutCSC=cms.double(150.0),
                Chi2CutDT=cms.double(10.0),
                RefitRPCHits=cms.bool(True),
                SkipStation=cms.int32(-1),
                Propagator=cms.string("hltESPSmartPropagatorAny"),
                TrackerSkipSystem=cms.int32(-1),
                DYTthrs=cms.vint32(30, 15)),
            ScaleTECxFactor=cms.double(-1.0),
            TrackerRecHitBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
            MuonRecHitBuilder=cms.string(
                "hltESPMuonTransientTrackingRecHitBuilder"),
            #	      MuonTrackingRegionBuilder = MasterMuonTrackingRegionBuilder,      #Using the master Muon ROI params - Although it is not used
            MuonTrackingRegionBuilder=cms.PSet(
                Rescale_eta=cms.double(3.0),
                Rescale_phi=cms.double(3.0),
                Rescale_Dz=cms.double(4.0),
                EtaR_UpperLimit_Par1=cms.double(0.25),
                EtaR_UpperLimit_Par2=cms.double(0.15),
                PhiR_UpperLimit_Par1=cms.double(0.6),
                PhiR_UpperLimit_Par2=cms.double(0.2),
                UseVertex=cms.bool(False),
                Pt_fixed=cms.bool(False),
                Z_fixed=cms.bool(False),
                Phi_fixed=cms.bool(True),
                Eta_fixed=cms.bool(True),
                Pt_min=cms.double(3.0),
                Phi_min=cms.double(0.1),
                Eta_min=cms.double(0.1),
                DeltaZ=cms.double(24.2),
                DeltaR=cms.double(0.025),
                DeltaEta=cms.double(0.2),
                DeltaPhi=cms.double(0.15),
                maxRegions=cms.int32(2),
                precise=cms.bool(True),
                OnDemand=cms.int32(-1),
                MeasurementTrackerName=cms.InputTag(
                    "hltESPMeasurementTracker"),
                beamSpot=cms.InputTag("hltOnlineBeamSpot"),
                vertexCollection=cms.InputTag("pixelVertices"),
                input=cms.InputTag('hltL2Muons', 'UpdatedAtVtx')),
            RefitRPCHits=cms.bool(True),
            PCut=cms.double(2.5),
            TrackTransformer=cms.PSet(
                DoPredictionsOnly=cms.bool(False),
                Fitter=cms.string("hltESPL3MuKFTrajectoryFitter"),
                TrackerRecHitBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
                Smoother=cms.string(
                    "hltESPKFTrajectorySmootherForMuonTrackLoader"),
                MuonRecHitBuilder=cms.string(
                    "hltESPMuonTransientTrackingRecHitBuilder"),
                RefitDirection=cms.string("insideOut"),
                RefitRPCHits=cms.bool(True),
                Propagator=cms.string("hltESPSmartPropagatorAny")),
            GlobalMuonTrackMatcher=cms.PSet(
                Pt_threshold1=cms.double(0.0),
                DeltaDCut_3=cms.double(15.0),
                MinP=cms.double(2.5),
                MinPt=cms.double(1.0),
                Chi2Cut_1=cms.double(50.0),
                Pt_threshold2=cms.double(9.99999999E8),
                LocChi2Cut=cms.double(0.001),
                Eta_threshold=cms.double(1.2),
                Quality_3=cms.double(7.0),
                Quality_2=cms.double(15.0),
                Chi2Cut_2=cms.double(50.0),
                Chi2Cut_3=cms.double(200.0),
                DeltaDCut_1=cms.double(40.0),
                DeltaRCut_2=cms.double(0.2),
                DeltaRCut_3=cms.double(1.0),
                DeltaDCut_2=cms.double(10.0),
                DeltaRCut_1=cms.double(0.1),
                Propagator=cms.string("hltESPSmartPropagator"),
                Quality_1=cms.double(20.0)),
            PtCut=cms.double(1.0),
            TrackerPropagator=cms.string("SteppingHelixPropagatorAny"),
            tkTrajLabel=cms.InputTag(
                "hltIterL3MuonSeededTracksOutIn"
            ),  #Feed tracks from iterations into L3MTB
            tkTrajBeamSpot=cms.InputTag("hltOnlineBeamSpot"),
            tkTrajMaxChi2=cms.double(9999.0),
            tkTrajMaxDXYBeamSpot=cms.double(
                9999.0),  #Using same values as old algos
            tkTrajVertex=cms.InputTag(
                "hltPixelVertices"
            ),  #From pixelVertice      #From pixelVerticesss
            tkTrajUseVertex=cms.bool(False),
            matchToSeeds=cms.bool(True)),
        TrackLoaderParameters=cms.PSet(
            PutTkTrackIntoEvent=cms.untracked.bool(False),
            beamSpot=cms.InputTag("hltOnlineBeamSpot"),
            SmoothTkTrack=cms.untracked.bool(False),
            MuonSeededTracksInstance=cms.untracked.string("L2Seeded"),
            Smoother=cms.string(
                "hltESPKFTrajectorySmootherForMuonTrackLoader"),
            MuonUpdatorAtVertexParameters=cms.PSet(
                MaxChi2=cms.double(1000000.0),
                Propagator=cms.string("hltESPSteppingHelixPropagatorOpposite"),
                BeamSpotPositionErrors=cms.vdouble(0.1, 0.1, 5.3)),
            VertexConstraint=cms.bool(False),
            DoSmoothing=cms.bool(False)  #Usually true
        ),
        MuonCollectionLabel=cms.InputTag('hltL2Muons', 'UpdatedAtVtx'))

    process.hltIterL3OIL3MuonsLinksCombination = cms.EDProducer(
        "L3TrackLinksCombiner", labels=cms.VInputTag('hltL3MuonsIterL3OI'))
    process.hltIterL3OIL3Muons = cms.EDProducer(
        "L3TrackCombiner", labels=cms.VInputTag('hltL3MuonsIterL3OI'))
    process.hltIterL3OIL3MuonCandidates = cms.EDProducer(
        "L3MuonCandidateProducer",
        InputLinksObjects=cms.InputTag("hltIterL3OIL3MuonsLinksCombination"),
        InputObjects=cms.InputTag("hltIterL3OIL3Muons"),
        MuonPtOption=cms.string("Tracker"))

    process.hltL2SelectorForL3IO = cms.EDProducer(
        "HLTMuonL2SelectorForL3IO",
        l2Src=cms.InputTag('hltL2Muons', 'UpdatedAtVtx'),
        l3OISrc=cms.InputTag('hltIterL3OIL3MuonCandidates'),
        InputLinks=cms.InputTag('hltIterL3OIL3MuonsLinksCombination'),
        #	    useOuterHitPosition = cms.bool( True ) ,
        applyL3Filters=cms.bool(False),
        #	    xDiffMax = cms.double( 0.5 ) ,
        #            yDiffMax = cms.double( 0.5 ) ,
        #            zDiffMax = cms.double( 9999.0 ) ,
        #            dRDiffMax  = cms.double( 0.01 ),
        MaxNormalizedChi2=cms.double(20.0),
        MaxPtDifference=cms.double(0.3),
        MinNhits=cms.int32(1),
        MinNmuonHits=cms.int32(1))

    ########## IO Algorthim:
    #Making Pixel Vertices:
    process.hltPixelTracks = cms.EDProducer(
        "PixelTrackProducer",
        Filter=cms.InputTag("hltPixelTrackFilterByKinematics"),
        passLabel=cms.string(
            "Pixel triplet primary tracks with vertex constraint"),
        Fitter=cms.InputTag("hltPixelTracksFitter"),
        CleanerPSet=cms.string("hltPixelTracksCleaner"),
        SeedingHitSets=cms.InputTag("hltPixelTracksHitTriplets"),
    )

    process.hltPixelVertices = cms.EDProducer(
        "PixelVertexProducer",
        WtAverage=cms.bool(True),
        Method2=cms.bool(True),
        beamSpot=cms.InputTag("hltOnlineBeamSpot"),
        PVcomparer=cms.PSet(
            refToPSet_=cms.string("HLTPSetPvClusterComparerForIT")),
        Verbosity=cms.int32(0),
        UseError=cms.bool(True),
        TrackCollection=cms.InputTag("hltPixelTracks"),
        PtMin=cms.double(1.0),
        NTrkMin=cms.int32(2),
        ZOffset=cms.double(5.0),
        Finder=cms.string("DivisiveVertexFinder"),
        ZSeparation=cms.double(0.05))
    #/Making Pixel Vertices, could probably use the following PTP tho?

    #Start Iterative tracking:
    process.hltIterL3Iter0HighPtTkMuPixelTracks = cms.EDProducer(
        "PixelTrackProducer",
        Filter=cms.InputTag("hltPixelTrackFilterByKinematics"),
        passLabel=cms.string(
            "Pixel triplet primary tracks with vertex constraint"),
        Fitter=cms.InputTag("hltPixelTracksFitter"),
        RegionFactoryPSet=IterMasterMuonTrackingRegionBuilder,
        CleanerPSet=cms.string("hltPixelTracksCleaner"),
        OrderedHitsFactoryPSet=cms.PSet(
            ComponentName=cms.string("StandardHitTripletGenerator"),
            GeneratorPSet=cms.PSet(
                useBending=cms.bool(True),
                useFixedPreFiltering=cms.bool(False),
                maxElement=cms.uint32(100000),
                phiPreFiltering=cms.double(0.3),
                extraHitRPhitolerance=cms.double(0.06),
                useMultScattering=cms.bool(True),
                SeedComparitorPSet=cms.PSet(ComponentName=cms.string(
                    "LowPtClusterShapeSeedComparitor"),
                                            clusterShapeCacheSrc=cms.InputTag(
                                                "hltSiPixelClustersCache")),
                extraHitRZtolerance=cms.double(0.06),
                ComponentName=cms.string("PixelTripletHLTGenerator")),
            SeedingLayers=cms.InputTag("hltPixelLayerTriplets")))
    process.hltIterL3Iter0HighPtTkMuPixelTracks.RegionFactoryPSet.ComponentName = cms.string(
        "MuonTrackingRegionBuilder")
    process.hltIterL3Iter0HighPtTkMuPixelTracks.RegionFactoryPSet.DeltaR = cms.double(
        0.2)

    process.hltIterL3Iter0HighPtTkMuPixelSeedsFromPixelTracks = cms.EDProducer(
        "SeedGeneratorFromProtoTracksEDProducer",
        useEventsWithNoVertex=cms.bool(True),
        originHalfLength=cms.double(1.0E9),
        useProtoTrackKinematics=cms.bool(False),
        usePV=cms.bool(False),
        SeedCreatorPSet=cms.PSet(
            refToPSet_=cms.string("HLTSeedFromProtoTracks")),
        InputVertexCollection=cms.InputTag(""),
        TTRHBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
        InputCollection=cms.InputTag("hltIterL3Iter0HighPtTkMuPixelTracks"),
        originRadius=cms.double(1.0E9))

    process.hltIterL3Iter0HighPtTkMuCkfTrackCandidates = cms.EDProducer(
        "CkfTrackCandidateMaker",
        src=cms.InputTag("hltIterL3Iter0HighPtTkMuPixelSeedsFromPixelTracks"),
        maxSeedsBeforeCleaning=cms.uint32(1000),
        SimpleMagneticField=cms.string("ParabolicMf"),
        TransientInitialStateEstimatorParameters=cms.PSet(
            propagatorAlongTISE=cms.string(
                "PropagatorWithMaterialParabolicMf"),
            numberMeasurementsForFit=cms.int32(4),
            propagatorOppositeTISE=cms.string(
                "PropagatorWithMaterialParabolicMfOpposite")),
        TrajectoryCleaner=cms.string("hltESPTrajectoryCleanerBySharedHits"),
        MeasurementTrackerEvent=cms.InputTag("hltSiStripClusters"),
        cleanTrajectoryAfterInOut=cms.bool(False),
        useHitsSplitting=cms.bool(False),
        RedundantSeedCleaner=cms.string("CachingSeedCleanerBySharedInput"),
        doSeedingRegionRebuilding=cms.bool(False),
        maxNSeeds=cms.uint32(100000),
        TrajectoryBuilderPSet=cms.PSet(refToPSet_=cms.string(
            "HLTIter0HighPtTkMuPSetTrajectoryBuilderIT")),
        NavigationSchool=cms.string("SimpleNavigationSchool"),
        TrajectoryBuilder=cms.string(""),
    )
    process.hltIterL3Iter0HighPtTkMuCtfWithMaterialTracks = cms.EDProducer(
        "TrackProducer",
        src=cms.InputTag("hltIterL3Iter0HighPtTkMuCkfTrackCandidates"),
        SimpleMagneticField=cms.string("ParabolicMf"),
        clusterRemovalInfo=cms.InputTag(""),
        beamSpot=cms.InputTag("hltOnlineBeamSpot"),
        MeasurementTrackerEvent=cms.InputTag("hltSiStripClusters"),
        Fitter=cms.string("hltESPFittingSmootherIT"),
        useHitsSplitting=cms.bool(False),
        MeasurementTracker=cms.string(""),
        AlgorithmName=cms.string("iter0"),
        alias=cms.untracked.string("ctfWithMaterialTracks"),
        NavigationSchool=cms.string(""),
        TrajectoryInEvent=cms.bool(True),
        TTRHBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
        GeometricInnerState=cms.bool(True),
        useSimpleMF=cms.bool(True),
        Propagator=cms.string("hltESPRungeKuttaTrackerPropagator"))
    process.hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity = cms.EDProducer(
        "AnalyticalTrackSelector",
        max_d0=cms.double(100.0),
        minNumber3DLayers=cms.uint32(0),
        max_lostHitFraction=cms.double(1.0),
        applyAbsCutsIfNoPV=cms.bool(False),
        qualityBit=cms.string("highPurity"),
        minNumberLayers=cms.uint32(3),
        chi2n_par=cms.double(0.7),
        useVtxError=cms.bool(False),
        nSigmaZ=cms.double(4.0),
        dz_par2=cms.vdouble(0.4, 4.0),
        applyAdaptedPVCuts=cms.bool(True),
        min_eta=cms.double(-9999.0),
        dz_par1=cms.vdouble(0.35, 4.0),
        copyTrajectories=cms.untracked.bool(True),
        vtxNumber=cms.int32(-1),
        max_d0NoPV=cms.double(100.0),
        keepAllTracks=cms.bool(False),
        maxNumberLostLayers=cms.uint32(1),
        beamspot=cms.InputTag("hltOnlineBeamSpot"),
        max_relpterr=cms.double(9999.0),
        copyExtras=cms.untracked.bool(True),
        max_z0NoPV=cms.double(100.0),
        vertexCut=cms.string("tracksSize>=3"),
        max_z0=cms.double(100.0),
        useVertices=cms.bool(False),
        min_nhits=cms.uint32(0),
        src=cms.InputTag("hltIterL3Iter0HighPtTkMuCtfWithMaterialTracks"),
        max_minMissHitOutOrIn=cms.int32(99),
        chi2n_no1Dmod_par=cms.double(9999.0),
        vertices=cms.InputTag("notUsed"),
        max_eta=cms.double(9999.0),
        d0_par2=cms.vdouble(0.4, 4.0),
        d0_par1=cms.vdouble(0.3, 4.0),
        res_par=cms.vdouble(0.003, 0.001),
        minHitsToBypassChecks=cms.uint32(20))
    process.hltIterL3Iter2HighPtTkMuClustersRefRemoval = cms.EDProducer(
        "HLTTrackClusterRemoverIterL3",
        doStrip=cms.bool(True),
        doStripChargeCheck=cms.bool(True),
        trajectories=cms.InputTag(
            "hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity"),
        oldClusterRemovalInfo=cms.InputTag(""),
        stripClusters=cms.InputTag("hltSiStripRawToClustersFacility"),
        pixelClusters=cms.InputTag("hltSiPixelClusters"),
        Common=cms.PSet(maxChi2=cms.double(16.0),
                        minGoodStripCharge=cms.double(60.0)),
        doPixel=cms.bool(True))
    process.hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent = cms.EDProducer(
        "MaskedMeasurementTrackerEventProducer",
        clustersToSkip=cms.InputTag(
            "hltIterL3Iter2HighPtTkMuClustersRefRemoval"),
        OnDemand=cms.bool(False),
        src=cms.InputTag("hltSiStripClusters"))
    process.hltIterL3Iter2HighPtTkMuPixelLayerPairs = cms.EDProducer(
        "SeedingLayersEDProducer",
        layerList=cms.vstring('BPix1+BPix2', 'BPix1+BPix3', 'BPix2+BPix3',
                              'BPix1+FPix1_pos', 'BPix1+FPix1_neg',
                              'BPix1+FPix2_pos', 'BPix1+FPix2_neg',
                              'BPix2+FPix1_pos', 'BPix2+FPix1_neg',
                              'BPix2+FPix2_pos', 'BPix2+FPix2_neg',
                              'FPix1_pos+FPix2_pos', 'FPix1_neg+FPix2_neg'),
        MTOB=cms.PSet(),
        TEC=cms.PSet(),
        MTID=cms.PSet(),
        FPix=cms.PSet(HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.0036),
                      useErrorsFromParam=cms.bool(True),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      skipClusters=cms.InputTag(
                          "hltIterL3Iter2HighPtTkMuClustersRefRemoval"),
                      hitErrorRPhi=cms.double(0.0051)),
        MTEC=cms.PSet(),
        MTIB=cms.PSet(),
        TID=cms.PSet(),
        TOB=cms.PSet(),
        BPix=cms.PSet(HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.006),
                      useErrorsFromParam=cms.bool(True),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      skipClusters=cms.InputTag(
                          "hltIterL3Iter2HighPtTkMuClustersRefRemoval"),
                      hitErrorRPhi=cms.double(0.0027)),
        TIB=cms.PSet())
    process.hltIterL3Iter2HighPtTkMuPixelSeeds = cms.EDProducer(
        "SeedGeneratorFromRegionHitsEDProducer",
        RegionFactoryPSet=IterMasterMuonTrackingRegionBuilder,
        SeedComparitorPSet=cms.PSet(
            ComponentName=cms.string("PixelClusterShapeSeedComparitor"),
            ClusterShapeHitFilterName=cms.string("ClusterShapeHitFilter"),
            FilterPixelHits=cms.bool(True),  #Usually True 
            FilterStripHits=cms.bool(False),
            FilterAtHelixStage=cms.bool(True),  #Usually True 
            ClusterShapeCacheSrc=cms.InputTag("hltSiPixelClustersCache")),
        ClusterCheckPSet=cms.PSet(
            PixelClusterCollectionLabel=cms.InputTag("hltSiPixelClusters"),
            MaxNumberOfCosmicClusters=cms.uint32(50000),
            doClusterCheck=cms.bool(False),
            ClusterCollectionLabel=cms.InputTag("hltSiStripClusters"),
            MaxNumberOfPixelClusters=cms.uint32(10000)),
        OrderedHitsFactoryPSet=cms.PSet(
            maxElement=cms.uint32(0),
            ComponentName=cms.string("StandardHitPairGenerator"),
            GeneratorPSet=cms.PSet(
                maxElement=cms.uint32(100000),
                SeedComparitorPSet=cms.PSet(ComponentName=cms.string("none"))),
            SeedingLayers=cms.InputTag(
                "hltIterL3Iter2HighPtTkMuPixelLayerPairs")),
        SeedCreatorPSet=cms.PSet(
            refToPSet_=cms.string("HLTSeedFromConsecutiveHitsCreatorIT")),
        TTRHBuilder=cms.string("hltESPTTRHBWithTrackAngle"))
    process.hltIterL3Iter2HighPtTkMuPixelSeeds.RegionFactoryPSet.ComponentName = cms.string(
        "MuonTrackingRegionBuilder")
    process.hltIterL3Iter2HighPtTkMuPixelSeeds.RegionFactoryPSet.DeltaR = cms.double(
        0.025)

    process.hltIterL3Iter2HighPtTkMuCkfTrackCandidates = cms.EDProducer(
        "CkfTrackCandidateMaker",
        src=cms.InputTag("hltIterL3Iter2HighPtTkMuPixelSeeds"),
        maxSeedsBeforeCleaning=cms.uint32(1000),
        SimpleMagneticField=cms.string("ParabolicMf"),
        TransientInitialStateEstimatorParameters=cms.PSet(
            propagatorAlongTISE=cms.string(
                "PropagatorWithMaterialParabolicMf"),
            numberMeasurementsForFit=cms.int32(4),
            propagatorOppositeTISE=cms.string(
                "PropagatorWithMaterialParabolicMfOpposite")),
        TrajectoryCleaner=cms.string("hltESPTrajectoryCleanerBySharedHits"),
        MeasurementTrackerEvent=cms.InputTag(
            "hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent"),
        cleanTrajectoryAfterInOut=cms.bool(False),
        useHitsSplitting=cms.bool(False),
        RedundantSeedCleaner=cms.string("CachingSeedCleanerBySharedInput"),
        doSeedingRegionRebuilding=cms.bool(False),
        maxNSeeds=cms.uint32(100000),
        TrajectoryBuilderPSet=cms.PSet(refToPSet_=cms.string(
            "HLTIter2HighPtTkMuPSetTrajectoryBuilderIT")),
        NavigationSchool=cms.string("SimpleNavigationSchool"),
        TrajectoryBuilder=cms.string(""),
    )
    process.hltIterL3Iter2HighPtTkMuCtfWithMaterialTracks = cms.EDProducer(
        "TrackProducer",
        src=cms.InputTag("hltIterL3Iter2HighPtTkMuCkfTrackCandidates"),
        SimpleMagneticField=cms.string("ParabolicMf"),
        clusterRemovalInfo=cms.InputTag(""),
        beamSpot=cms.InputTag("hltOnlineBeamSpot"),
        MeasurementTrackerEvent=cms.InputTag(
            "hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent"),
        Fitter=cms.string("hltESPFittingSmootherIT"),
        useHitsSplitting=cms.bool(False),
        MeasurementTracker=cms.string(""),
        AlgorithmName=cms.string("iter2"),
        alias=cms.untracked.string("ctfWithMaterialTracks"),
        NavigationSchool=cms.string(""),
        TrajectoryInEvent=cms.bool(True),
        TTRHBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
        GeometricInnerState=cms.bool(True),
        useSimpleMF=cms.bool(True),
        Propagator=cms.string("hltESPRungeKuttaTrackerPropagator"))
    process.hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity = cms.EDProducer(
        "AnalyticalTrackSelector",
        max_d0=cms.double(100.0),
        minNumber3DLayers=cms.uint32(0),
        max_lostHitFraction=cms.double(1.0),
        applyAbsCutsIfNoPV=cms.bool(False),
        qualityBit=cms.string("highPurity"),
        minNumberLayers=cms.uint32(3),
        chi2n_par=cms.double(0.7),
        useVtxError=cms.bool(False),
        nSigmaZ=cms.double(4.0),
        dz_par2=cms.vdouble(0.4, 4.0),
        applyAdaptedPVCuts=cms.bool(True),
        min_eta=cms.double(-9999.0),
        dz_par1=cms.vdouble(0.35, 4.0),
        copyTrajectories=cms.untracked.bool(True),
        vtxNumber=cms.int32(-1),
        max_d0NoPV=cms.double(100.0),
        keepAllTracks=cms.bool(False),
        maxNumberLostLayers=cms.uint32(1),
        beamspot=cms.InputTag("hltOnlineBeamSpot"),
        max_relpterr=cms.double(9999.0),
        copyExtras=cms.untracked.bool(True),
        max_z0NoPV=cms.double(100.0),
        vertexCut=cms.string("tracksSize>=3"),
        max_z0=cms.double(100.0),
        useVertices=cms.bool(False),
        min_nhits=cms.uint32(0),
        src=cms.InputTag("hltIterL3Iter2HighPtTkMuCtfWithMaterialTracks"),
        max_minMissHitOutOrIn=cms.int32(99),
        chi2n_no1Dmod_par=cms.double(9999.0),
        vertices=cms.InputTag("notUsed"),
        max_eta=cms.double(9999.0),
        d0_par2=cms.vdouble(0.4, 4.0),
        d0_par1=cms.vdouble(0.3, 4.0),
        res_par=cms.vdouble(0.003, 0.001),
        minHitsToBypassChecks=cms.uint32(20))
    if not hasattr(process, "hltTrackAlgoPriorityOrder"):
        from RecoTracker.FinalTrackSelectors.trackAlgoPriorityOrder_cfi import trackAlgoPriorityOrder
        process.hltTrackAlgoPriorityOrder = trackAlgoPriorityOrder.clone(
            ComponentName="hltTrackAlgoPriorityOrder",
            algoOrder=[
            ]  # HLT iteration order is correct in the hard-coded default
        )
    process.hltIterL3Iter2HighPtTkMuMerged = cms.EDProducer(
        "TrackListMerger",
        ShareFrac=cms.double(0.19),
        writeOnlyTrkQuals=cms.bool(False),
        MinPT=cms.double(0.05),
        allowFirstHitShare=cms.bool(True),
        copyExtras=cms.untracked.bool(True),
        Epsilon=cms.double(-0.001),
        selectedTrackQuals=cms.VInputTag(
            'hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity',
            'hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity'),
        indivShareFrac=cms.vdouble(1.0, 1.0),
        MaxNormalizedChisq=cms.double(1000.0),
        copyMVA=cms.bool(False),
        FoundHitBonus=cms.double(5.0),
        setsToMerge=cms.VPSet(
            cms.PSet(pQual=cms.bool(False), tLists=cms.vint32(0, 1))),
        MinFound=cms.int32(3),
        hasSelector=cms.vint32(0, 0),
        TrackProducers=cms.VInputTag(
            'hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity',
            'hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity'),
        LostHitPenalty=cms.double(20.0),
        newQuality=cms.string("confirmed"),
        trackAlgoPriorityOrder=cms.string("hltTrackAlgoPriorityOrder"),
    )

    #Iterative tracking finished

    # L3MuonProducer from iterative tracking:
    process.hltL3MuonsIterL3IO = cms.EDProducer(
        "L3MuonProducer",
        ServiceParameters=cms.PSet(Propagators=cms.untracked.vstring(
            'hltESPSmartPropagatorAny', 'SteppingHelixPropagatorAny',
            'hltESPSmartPropagator', 'hltESPSteppingHelixPropagatorOpposite'),
                                   RPCLayers=cms.bool(True),
                                   UseMuonNavigation=cms.untracked.bool(True)),
        L3TrajBuilderParameters=cms.PSet(
            ScaleTECyFactor=cms.double(-1.0),
            GlbRefitterParameters=cms.PSet(
                TrackerSkipSection=cms.int32(-1),
                DoPredictionsOnly=cms.bool(False),
                PropDirForCosmics=cms.bool(False),
                HitThreshold=cms.int32(1),
                RefitFlag=cms.bool(True),  #Usually true
                MuonHitsOption=cms.int32(1),
                Chi2CutRPC=cms.double(1.0),
                Fitter=cms.string("hltESPL3MuKFTrajectoryFitter"),
                DTRecSegmentLabel=cms.InputTag("hltDt4DSegments"),
                TrackerRecHitBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
                MuonRecHitBuilder=cms.string(
                    "hltESPMuonTransientTrackingRecHitBuilder"),
                RefitDirection=cms.string("insideOut"),
                CSCRecSegmentLabel=cms.InputTag("hltCscSegments"),
                Chi2CutCSC=cms.double(150.0),
                Chi2CutDT=cms.double(10.0),
                RefitRPCHits=cms.bool(True),
                SkipStation=cms.int32(-1),
                Propagator=cms.string("hltESPSmartPropagatorAny"),
                TrackerSkipSystem=cms.int32(-1),
                DYTthrs=cms.vint32(30, 15)),
            ScaleTECxFactor=cms.double(-1.0),
            TrackerRecHitBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
            MuonRecHitBuilder=cms.string(
                "hltESPMuonTransientTrackingRecHitBuilder"),
            MuonTrackingRegionBuilder=cms.PSet(
                Rescale_eta=cms.double(3.0),
                Rescale_phi=cms.double(3.0),
                Rescale_Dz=cms.double(4.0),  #Normally 4
                EtaR_UpperLimit_Par1=cms.double(0.25),  #Normally 0.25
                EtaR_UpperLimit_Par2=cms.double(0.15),  #Normally 0.15
                PhiR_UpperLimit_Par1=cms.double(0.6),  #Normally 0.6
                PhiR_UpperLimit_Par2=cms.double(0.2),  #Normally 0.2
                UseVertex=cms.bool(False),  #Normally False
                Pt_fixed=cms.bool(False),  #Normally True
                Z_fixed=cms.bool(False),  #True for IOH
                Phi_fixed=cms.bool(True),  #False for IOH
                Eta_fixed=cms.bool(True),  #False for IOH
                Pt_min=cms.double(3.0),  #Is 0.9 for Tau; normally 8 here
                Phi_min=cms.double(0.1),
                Eta_min=cms.double(0.1),
                DeltaZ=cms.double(
                    24.2),  #default for tau: 24.2, for old IOH: 15.9
                DeltaR=cms.double(
                    0.025
                ),  #This changes for different iterations. for old IOH: ?
                DeltaEta=cms.double(0.04),  #default 0.15
                DeltaPhi=cms.double(0.15),  #default 0.2
                maxRegions=cms.int32(2),
                precise=cms.bool(True),
                OnDemand=cms.int32(-1),
                MeasurementTrackerName=cms.InputTag(
                    "hltESPMeasurementTracker"),
                beamSpot=cms.InputTag("hltOnlineBeamSpot"),
                vertexCollection=cms.InputTag(
                    "pixelVertices"
                ),  #Warning: I am not generating colleciton. Vertex is off anyway
                input=cms.InputTag('hltL2Muons', 'UpdatedAtVtx')),
            #	      MuonTrackingRegionBuilder = MasterMuonTrackingRegionBuilder,  #Using the master Muon ROI params - Although it is not used
            RefitRPCHits=cms.bool(True),
            PCut=cms.double(2.5),
            TrackTransformer=cms.PSet(
                DoPredictionsOnly=cms.bool(False),
                Fitter=cms.string("hltESPL3MuKFTrajectoryFitter"),
                TrackerRecHitBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
                Smoother=cms.string(
                    "hltESPKFTrajectorySmootherForMuonTrackLoader"),
                MuonRecHitBuilder=cms.string(
                    "hltESPMuonTransientTrackingRecHitBuilder"),
                RefitDirection=cms.string("insideOut"),
                RefitRPCHits=cms.bool(True),
                Propagator=cms.string("hltESPSmartPropagatorAny")),
            GlobalMuonTrackMatcher=cms.PSet(
                Pt_threshold1=cms.double(0.0),
                DeltaDCut_3=cms.double(15.0),
                MinP=cms.double(2.5),
                MinPt=cms.double(1.0),
                Chi2Cut_1=cms.double(50.0),
                Pt_threshold2=cms.double(9.99999999E8),
                LocChi2Cut=cms.double(0.001),
                Eta_threshold=cms.double(1.2),
                Quality_3=cms.double(7.0),
                Quality_2=cms.double(15.0),
                Chi2Cut_2=cms.double(50.0),
                Chi2Cut_3=cms.double(200.0),
                DeltaDCut_1=cms.double(40.0),
                DeltaRCut_2=cms.double(0.2),
                DeltaRCut_3=cms.double(1.0),
                DeltaDCut_2=cms.double(10.0),
                DeltaRCut_1=cms.double(0.1),
                Propagator=cms.string("hltESPSmartPropagator"),
                Quality_1=cms.double(20.0)),
            PtCut=cms.double(1.0),
            TrackerPropagator=cms.string("SteppingHelixPropagatorAny"),
            tkTrajLabel=cms.InputTag(
                "hltIterL3Iter2HighPtTkMuMerged"
            ),  #Feed tracks from iterations into L3MTB
            tkTrajBeamSpot=cms.InputTag("hltOnlineBeamSpot"),
            tkTrajMaxChi2=cms.double(9999.0),
            tkTrajMaxDXYBeamSpot=cms.double(9999.0),  #same cuts as old algos
            tkTrajVertex=cms.InputTag("pixelVertices"),
            tkTrajUseVertex=cms.bool(False),
            matchToSeeds=cms.bool(True)),
        TrackLoaderParameters=cms.PSet(
            PutTkTrackIntoEvent=cms.untracked.bool(False),
            beamSpot=cms.InputTag("hltOnlineBeamSpot"),
            SmoothTkTrack=cms.untracked.bool(False),
            MuonSeededTracksInstance=cms.untracked.string("L2Seeded"),
            Smoother=cms.string(
                "hltESPKFTrajectorySmootherForMuonTrackLoader"),
            MuonUpdatorAtVertexParameters=cms.PSet(
                MaxChi2=cms.double(1000000.0),
                Propagator=cms.string("hltESPSteppingHelixPropagatorOpposite"),
                BeamSpotPositionErrors=cms.vdouble(0.1, 0.1, 5.3)),
            VertexConstraint=cms.bool(False),
            DoSmoothing=cms.bool(False)  #Usually true
        ),
        MuonCollectionLabel=cms.InputTag('hltL2Muons', 'UpdatedAtVtx'))

    process.hltIterL3MuonsLinksCombination = cms.EDProducer(
        "L3TrackLinksCombiner",
        labels=cms.VInputTag('hltL3MuonsIterL3OI', 'hltL3MuonsIterL3IO'))
    process.hltIterL3Muons = cms.EDProducer("L3TrackCombiner",
                                            labels=cms.VInputTag(
                                                'hltL3MuonsIterL3OI',
                                                'hltL3MuonsIterL3IO'))
    process.hltIterL3MuonCandidates = cms.EDProducer(
        "L3MuonCandidateProducer",
        InputLinksObjects=cms.InputTag("hltIterL3MuonsLinksCombination"),
        InputObjects=cms.InputTag("hltIterL3Muons"),
        MuonPtOption=cms.string("Tracker"))

    ###	FOR IO Only:
    #	process.hltIterL3MuonCandidates.InputLinksObjects = cms.InputTag( "hltL3MuonsIterL3IO" )
    #	process.hltIterL3MuonCandidates.InputObjects = cms.InputTag( "hltL3MuonsIterL3IO" )
    #        process.hltL3fL1sMu16orMu25L1f0L2f16QL3Filtered50Q.InputLinks = cms.InputTag( "hltL3MuonsIterL3IO" )

    ###    FOR OI Only:
    #	process.hltIterL3MuonCandidates.InputLinksObjects = cms.InputTag( "hltL3MuonsIterL3OI" )
    #	process.hltIterL3MuonCandidates.InputObjects = cms.InputTag( "hltL3MuonsIterL3OI" )
    #        process.hltL3fL1sMu16orMu25L1f0L2f16QL3Filtered50Q.InputLinks = cms.InputTag( "hltL3MuonsIterL3OI" )
    #############################################################

    ####################### NEW Combo:
    process.HLTIterL3IterativeTrackingHighPtTkMuIteration0 = cms.Sequence(
        process.hltPixelLayerTriplets + process.hltPixelTracksTrackingRegions +
        process.hltPixelTracksHitDoublets + process.hltPixelTracksHitTriplets +
        process.hltPixelTracksFitter +
        process.hltPixelTrackFilterByKinematics +
        process.hltIterL3Iter0HighPtTkMuPixelTracks +
        process.hltIterL3Iter0HighPtTkMuPixelSeedsFromPixelTracks +
        process.hltIterL3Iter0HighPtTkMuCkfTrackCandidates +
        process.hltIterL3Iter0HighPtTkMuCtfWithMaterialTracks +
        process.hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity)
    process.HLTIterL3IterativeTrackingHighPtTkMuIteration2 = cms.Sequence(
        process.hltIterL3Iter2HighPtTkMuClustersRefRemoval +
        process.hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent +
        process.hltIterL3Iter2HighPtTkMuPixelLayerPairs +
        process.hltIterL3Iter2HighPtTkMuPixelSeeds +
        process.hltIterL3Iter2HighPtTkMuCkfTrackCandidates +
        process.hltIterL3Iter2HighPtTkMuCtfWithMaterialTracks +
        process.hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity)
    process.HLTIterL3IterativeTrackingHighPtTkMu = cms.Sequence(
        process.HLTIterL3IterativeTrackingHighPtTkMuIteration0 +
        process.HLTIterL3IterativeTrackingHighPtTkMuIteration2 +
        process.hltIterL3Iter2HighPtTkMuMerged)

    process.HLTL3muonTkCandidateSequence = cms.Sequence(
        process.HLTDoLocalPixelSequence + process.HLTDoLocalStripSequence +
        process.HLTRecopixelvertexingSequence +
        process.hltIterL3OISeedsFromL2Muons +  #OIStart#off for IO
        process.hltIterL3OITrackCandidates +  #off for IO
        process.hltIterL3MuonSeededTracksOutIn +  #off for IO
        process.hltL3MuonsIterL3OI +  #off for IO
        process.hltL2SelectorForL3IO +  #OIEnd		#off for IO
        process.HLTIterL3IterativeTrackingHighPtTkMu +  #off for OI
        process.hltL3MuonsIterL3IO  #off for OI
    )

    process.HLTL3muonrecoNocandSequence = cms.Sequence(
        process.HLTL3muonTkCandidateSequence +
        process.hltIterL3MuonsLinksCombination  #off for IO or OI only
        + process.hltIterL3Muons  #off for IO or OI only
    )
    process.HLTL3muonrecoSequence = cms.Sequence(
        process.HLTL3muonrecoNocandSequence + process.hltIterL3MuonCandidates)

    return process
    ptMin = 0.9,
    useFoundVertices = True,
    originRadius = 0.5
))
hiDetachedTripletStepTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck = "",
    seedingLayers = "hiDetachedTripletStepSeedLayers",
    trackingRegions = "hiDetachedTripletStepTrackingRegions",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)
from RecoPixelVertexing.PixelLowPtUtilities.ClusterShapeHitFilterESProducer_cfi import *
hiDetachedTripletStepTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "hiDetachedTripletStepTracksHitDoublets",
    extraHitRPhitolerance = 0.0,
    extraHitRZtolerance = 0.0,
    maxElement = 1000000,
    SeedComparitorPSet = RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone(),
    produceSeedingHitSets = True,
)

from RecoPixelVertexing.PixelTriplets.caHitTripletEDProducer_cfi import caHitTripletEDProducer as _caHitTripletEDProducer
hiDetachedTripletStepTracksHitDoubletsCA = hiDetachedTripletStepTracksHitDoublets.clone()
hiDetachedTripletStepTracksHitDoubletsCA.layerPairs = [0,1]

hiDetachedTripletStepTracksHitTripletsCA = _caHitTripletEDProducer.clone(
    doublets = "hiDetachedTripletStepTracksHitDoubletsCA",
    extraHitRPhitolerance = hiDetachedTripletStepTracksHitTriplets.extraHitRPhitolerance,
    maxChi2 = dict(
        pt1    = 0.8, pt2    = 2,
        value1 = 300 , value2 = 10,
    ),
# seeding
from RecoTracker.TkHitPairs.hitPairEDProducer_cfi import hitPairEDProducer as _hitPairEDProducer
initialStepHitDoubletsPreSplitting = _hitPairEDProducer.clone(
    seedingLayers = "initialStepSeedLayersPreSplitting",
    trackingRegions = "initialStepTrackingRegionsPreSplitting",
    clusterCheck = "trackerClusterCheckPreSplitting",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)
from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
from RecoPixelVertexing.PixelLowPtUtilities.ClusterShapeHitFilterESProducer_cfi import *
import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi
initialStepHitTripletsPreSplitting = _pixelTripletHLTEDProducer.clone(
    doublets = "initialStepHitDoubletsPreSplitting",
    produceSeedingHitSets = True,
    SeedComparitorPSet = RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone(
        clusterShapeCacheSrc = 'siPixelClusterShapeCachePreSplitting'
    ),
)
from RecoPixelVertexing.PixelTriplets.pixelQuadrupletEDProducer_cfi import pixelQuadrupletEDProducer as _pixelQuadrupletEDProducer
trackingPhase1.toModify(initialStepHitDoubletsPreSplitting, layerPairs = [0,1,2]) # layer pairs (0,1), (1,2), (2,3)
initialStepHitQuadrupletsPreSplitting = _pixelQuadrupletEDProducer.clone(
    triplets = "initialStepHitTripletsPreSplitting",
    extraHitRZtolerance = initialStepHitTripletsPreSplitting.extraHitRZtolerance,
    extraHitRPhitolerance = initialStepHitTripletsPreSplitting.extraHitRPhitolerance,
    maxChi2 = dict(
        pt1    = 0.8, pt2    = 2,
        value1 = 200, value2 = 100,
        enabled = True,
    ),
    extraPhiTolerance = dict(
Exemple #7
0
initialStepHitDoubletsPreSplitting = _hitPairEDProducer.clone(
    seedingLayers="initialStepSeedLayersPreSplitting",
    trackingRegions="initialStepTrackingRegionsPreSplitting",
    clusterCheck="trackerClusterCheckPreSplitting",
    maxElement=0,
    produceIntermediateHitDoublets=True,
)
from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
from RecoPixelVertexing.PixelLowPtUtilities.ClusterShapeHitFilterESProducer_cfi import *
import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi

initialStepHitTripletsPreSplitting = _pixelTripletHLTEDProducer.clone(
    doublets="initialStepHitDoubletsPreSplitting",
    produceSeedingHitSets=True,
    SeedComparitorPSet=RecoPixelVertexing.PixelLowPtUtilities.
    LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone(
        clusterShapeCacheSrc='siPixelClusterShapeCachePreSplitting'),
)
from RecoPixelVertexing.PixelTriplets.pixelQuadrupletEDProducer_cfi import pixelQuadrupletEDProducer as _pixelQuadrupletEDProducer

trackingPhase1.toModify(initialStepHitDoubletsPreSplitting,
                        layerPairs=[0, 1,
                                    2])  # layer pairs (0,1), (1,2), (2,3)
initialStepHitQuadrupletsPreSplitting = _pixelQuadrupletEDProducer.clone(
    triplets="initialStepHitTripletsPreSplitting",
    extraHitRZtolerance=initialStepHitTripletsPreSplitting.extraHitRZtolerance,
    extraHitRPhitolerance=initialStepHitTripletsPreSplitting.
    extraHitRPhitolerance,
    maxChi2=dict(
        pt1=0.8,
# Hit ntuplets
hiPixel3PrimTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck="",
    seedingLayers="PixelLayerTriplets",
    trackingRegions="hiTrackingRegionWithVertex",
    maxElement=50000000,
    produceIntermediateHitDoublets=True,
)
from Configuration.Eras.Modifier_trackingPhase1_cff import trackingPhase1
trackingPhase1.toModify(hiPixel3PrimTracksHitDoublets,
                        seedingLayers="hiPixelLayerQuadruplets")

hiPixel3PrimTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets="hiPixel3PrimTracksHitDoublets",
    maxElement=
    1000000,  # increase threshold for triplets in generation step (default: 100000)
    produceSeedingHitSets=True,
    produceIntermediateHitTriplets=True,
)

from RecoPixelVertexing.PixelTriplets.caHitQuadrupletEDProducer_cfi import caHitQuadrupletEDProducer as _caHitQuadrupletEDProducer
hiPixel3PrimTracksHitDoubletsCA = hiPixel3PrimTracksHitDoublets.clone(
    layerPairs=[0, 1, 2])
hiPixel3PrimTracksHitQuadrupletsCA = _caHitQuadrupletEDProducer.clone(
    doublets="hiPixel3PrimTracksHitDoubletsCA",
    extraHitRPhitolerance=hiPixel3PrimTracksHitTriplets.extraHitRPhitolerance,
    SeedComparitorPSet=hiPixel3PrimTracksHitTriplets.SeedComparitorPSet,
    maxChi2=dict(
        pt1=0.7,
        pt2=2,
        value1=200,
from RecoPixelVertexing.PixelTrackFitting.pixelFitterByConformalMappingAndLine_cfi import *
from RecoHI.HiTracking.HIPixelTrackFilter_cff import *
from RecoHI.HiTracking.HITrackingRegionProducer_cfi import *

# Hit ntuplets
hiConformalPixelTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck = "",
    seedingLayers = "PixelLayerTriplets",
    trackingRegions = "hiTrackingRegionWithVertex",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)

hiConformalPixelTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "hiConformalPixelTracksHitDoublets",
    maxElement = 5000000, # increase threshold for triplets in generation step (default: 100000)
    produceSeedingHitSets = True,
)

# Pixel tracks
hiConformalPixelTracks = cms.EDProducer("PixelTrackProducer",
                                        
                                        #passLabel  = cms.string('Pixel triplet low-pt tracks with vertex constraint'),
                                        
                                        # Ordered Hits
                                        SeedingHitSets = cms.InputTag("hiConformalPixelTracksHitTriplets"),
                                        
                                        # Fitter
                                        Fitter = cms.InputTag('pixelFitterByConformalMappingAndLine'),
                                        
                                        # Filter
def customizeHLTForPFTrackingPhaseI2017(process):

    process.hltPixelLayerTriplets.layerList = cms.vstring(
        'BPix1+BPix2+BPix3', 'BPix2+BPix3+BPix4', 'BPix1+BPix3+BPix4',
        'BPix1+BPix2+BPix4', 'BPix2+BPix3+FPix1_pos', 'BPix2+BPix3+FPix1_neg',
        'BPix1+BPix2+FPix1_pos', 'BPix1+BPix2+FPix1_neg',
        'BPix2+FPix1_pos+FPix2_pos', 'BPix2+FPix1_neg+FPix2_neg',
        'BPix1+FPix1_pos+FPix2_pos', 'BPix1+FPix1_neg+FPix2_neg',
        'FPix1_pos+FPix2_pos+FPix3_pos', 'FPix1_neg+FPix2_neg+FPix3_neg')

    process.hltPixelLayerQuadruplets = cms.EDProducer(
        "SeedingLayersEDProducer",
        BPix=cms.PSet(useErrorsFromParam=cms.bool(True),
                      hitErrorRPhi=cms.double(0.0027),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.006)),
        FPix=cms.PSet(useErrorsFromParam=cms.bool(True),
                      hitErrorRPhi=cms.double(0.0051),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.0036)),
        MTEC=cms.PSet(),
        MTIB=cms.PSet(),
        MTID=cms.PSet(),
        MTOB=cms.PSet(),
        TEC=cms.PSet(),
        TIB=cms.PSet(),
        TID=cms.PSet(),
        TOB=cms.PSet(),
        layerList=cms.vstring('BPix1+BPix2+BPix3+BPix4',
                              'BPix1+BPix2+BPix3+FPix1_pos',
                              'BPix1+BPix2+BPix3+FPix1_neg',
                              'BPix1+BPix2+FPix1_pos+FPix2_pos',
                              'BPix1+BPix2+FPix1_neg+FPix2_neg',
                              'BPix1+FPix1_pos+FPix2_pos+FPix3_pos',
                              'BPix1+FPix1_neg+FPix2_neg+FPix3_neg'))

    # Configure seed generator / pixel track producer
    from RecoPixelVertexing.PixelTriplets.caHitQuadrupletEDProducer_cfi import caHitQuadrupletEDProducer as _caHitQuadrupletEDProducer

    process.hltPixelTracksTrackingRegions.RegionPSet = cms.PSet(
        precise=cms.bool(True),
        beamSpot=cms.InputTag("hltOnlineBeamSpot"),
        originRadius=cms.double(0.02),
        ptMin=cms.double(0.9),
        nSigmaZ=cms.double(4.0),
    )

    process.hltPixelTracksHitDoublets.seedingLayers = "hltPixelLayerQuadruplets"
    process.hltPixelTracksHitDoublets.layerPairs = [
        0, 1, 2
    ]  # layer pairs (0,1), (1,2), (2,3)

    process.hltPixelTracksHitQuadruplets = _caHitQuadrupletEDProducer.clone(
        doublets="hltPixelTracksHitDoublets",
        extraHitRPhitolerance=cms.double(0.032),
        maxChi2=dict(
            pt1=0.7,
            pt2=2,
            value1=200,
            value2=50,
            enabled=True,
        ),
        useBendingCorrection=True,
        fitFastCircle=True,
        fitFastCircleChi2Cut=True,
        CAThetaCut=cms.double(0.0012),
        CAPhiCut=cms.double(0.2),
        CAHardPtCut=cms.double(0),
        SeedComparitorPSet=cms.PSet(
            ComponentName=cms.string("LowPtClusterShapeSeedComparitor"),
            clusterShapeCacheSrc=cms.InputTag("hltSiPixelClustersCache"),
            clusterShapeHitFilter=cms.string('ClusterShapeHitFilter')))

    process.hltPixelTracks.SeedingHitSets = "hltPixelTracksHitQuadruplets"

    process.HLTDoRecoPixelTracksSequence = cms.Sequence(
        process.hltPixelLayerQuadruplets +
        process.hltPixelTracksTrackingRegions +
        process.hltPixelTracksHitDoublets +
        process.hltPixelTracksHitQuadruplets + process.hltPixelTracks)

    process.HLTIter0PSetTrajectoryFilterIT.minimumNumberOfHits = cms.int32(4)
    process.HLTIter0PSetTrajectoryFilterIT.minHitsMinPt = cms.int32(4)
    process.hltIter0PFlowTrackCutClassifier.mva.minLayers = cms.vint32(3, 3, 4)
    process.hltIter0PFlowTrackCutClassifier.mva.min3DLayers = cms.vint32(
        0, 3, 4)
    process.hltIter0PFlowTrackCutClassifier.mva.minPixelHits = cms.vint32(
        0, 3, 4)

    process.hltIter1PixelLayerTriplets = cms.EDProducer(
        "SeedingLayersEDProducer",
        layerList=cms.vstring('BPix1+BPix2+BPix3', 'BPix1+BPix2+FPix1_pos',
                              'BPix1+BPix2+FPix1_neg',
                              'BPix1+FPix1_pos+FPix2_pos',
                              'BPix1+FPix1_neg+FPix2_neg'),
        MTOB=cms.PSet(),
        TEC=cms.PSet(),
        MTID=cms.PSet(),
        FPix=cms.PSet(HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.0036),
                      useErrorsFromParam=cms.bool(True),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      skipClusters=cms.InputTag("hltIter1ClustersRefRemoval"),
                      hitErrorRPhi=cms.double(0.0051)),
        MTEC=cms.PSet(),
        MTIB=cms.PSet(),
        TID=cms.PSet(),
        TOB=cms.PSet(),
        BPix=cms.PSet(HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.006),
                      useErrorsFromParam=cms.bool(True),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      skipClusters=cms.InputTag("hltIter1ClustersRefRemoval"),
                      hitErrorRPhi=cms.double(0.0027)),
        TIB=cms.PSet())

    process.HLTIter1PSetTrajectoryFilterIT = cms.PSet(
        ComponentType=cms.string('CkfBaseTrajectoryFilter'),
        chargeSignificance=cms.double(-1.0),
        constantValueForLostHitsFractionFilter=cms.double(2.0),
        extraNumberOfHitsBeforeTheFirstLoop=cms.int32(4),
        maxCCCLostHits=cms.int32(0),  # offline (2),
        maxConsecLostHits=cms.int32(1),
        maxLostHits=cms.int32(1),  # offline (999),
        maxLostHitsFraction=cms.double(0.1),
        maxNumberOfHits=cms.int32(100),
        minGoodStripCharge=cms.PSet(
            refToPSet_=cms.string("HLTSiStripClusterChargeCutNone")),
        minHitsMinPt=cms.int32(3),
        minNumberOfHitsForLoopers=cms.int32(13),
        minNumberOfHitsPerLoop=cms.int32(4),
        minPt=cms.double(0.2),
        minimumNumberOfHits=cms.int32(4),  # 3 online
        nSigmaMinPt=cms.double(5.0),
        pixelSeedExtension=cms.bool(True),
        seedExtension=cms.int32(1),
        seedPairPenalty=cms.int32(0),
        strictSeedExtension=cms.bool(True))

    process.HLTIter1PSetTrajectoryFilterInOutIT = cms.PSet(
        ComponentType=cms.string('CkfBaseTrajectoryFilter'),
        chargeSignificance=cms.double(-1.0),
        constantValueForLostHitsFractionFilter=cms.double(2.0),
        extraNumberOfHitsBeforeTheFirstLoop=cms.int32(4),
        maxCCCLostHits=cms.int32(0),  # offline (2),
        maxConsecLostHits=cms.int32(1),
        maxLostHits=cms.int32(1),  # offline (999),
        maxLostHitsFraction=cms.double(0.1),
        maxNumberOfHits=cms.int32(100),
        minGoodStripCharge=cms.PSet(
            refToPSet_=cms.string("HLTSiStripClusterChargeCutNone")),
        minHitsMinPt=cms.int32(3),
        minNumberOfHitsForLoopers=cms.int32(13),
        minNumberOfHitsPerLoop=cms.int32(4),
        minPt=cms.double(0.2),
        minimumNumberOfHits=cms.int32(4),  # 3 online
        nSigmaMinPt=cms.double(5.0),
        pixelSeedExtension=cms.bool(True),
        seedExtension=cms.int32(1),
        seedPairPenalty=cms.int32(0),
        strictSeedExtension=cms.bool(True))

    process.HLTIter1PSetTrajectoryBuilderIT = cms.PSet(
        inOutTrajectoryFilter=cms.PSet(
            refToPSet_=cms.string('HLTIter1PSetTrajectoryFilterInOutIT')),
        propagatorAlong=cms.string("PropagatorWithMaterialParabolicMf"),
        trajectoryFilter=cms.PSet(
            refToPSet_=cms.string("HLTIter1PSetTrajectoryFilterIT")),
        maxCand=cms.int32(2),
        ComponentType=cms.string("CkfTrajectoryBuilder"),
        propagatorOpposite=cms.string(
            "PropagatorWithMaterialParabolicMfOpposite"),
        MeasurementTrackerName=cms.string("hltIter1ESPMeasurementTracker"),
        estimator=cms.string("hltESPChi2ChargeMeasurementEstimator16"),
        TTRHBuilder=cms.string("hltESPTTRHBWithTrackAngle"),
        updator=cms.string("hltESPKFUpdator"),
        alwaysUseInvalidHits=cms.bool(False),
        intermediateCleaning=cms.bool(True),
        lostHitPenalty=cms.double(30.0),
        useSameTrajFilter=cms.bool(
            False)  # new ! other iteration should have it set to True
    )

    process.HLTIterativeTrackingIteration1 = cms.Sequence(
        process.hltIter1ClustersRefRemoval +
        process.hltIter1MaskedMeasurementTrackerEvent +
        process.hltIter1PixelLayerTriplets +
        process.hltIter1PFlowPixelTrackingRegions +
        process.hltIter1PFlowPixelClusterCheck +
        process.hltIter1PFlowPixelHitDoublets +
        process.hltIter1PFlowPixelHitTriplets +
        process.hltIter1PFlowPixelSeeds +
        process.hltIter1PFlowCkfTrackCandidates +
        process.hltIter1PFlowCtfWithMaterialTracks +
        process.hltIter1PFlowTrackCutClassifierPrompt +
        process.hltIter1PFlowTrackCutClassifierDetached +
        process.hltIter1PFlowTrackCutClassifierMerged +
        process.hltIter1PFlowTrackSelectionHighPurity)

    process.hltIter2PixelLayerTriplets = cms.EDProducer(
        "SeedingLayersEDProducer",
        layerList=cms.vstring('BPix1+BPix2+BPix3', 'BPix1+BPix2+FPix1_pos',
                              'BPix1+BPix2+FPix1_neg',
                              'BPix1+FPix1_pos+FPix2_pos',
                              'BPix1+FPix1_neg+FPix2_neg'),
        MTOB=cms.PSet(),
        TEC=cms.PSet(),
        MTID=cms.PSet(),
        FPix=cms.PSet(HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.0036),
                      useErrorsFromParam=cms.bool(True),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      skipClusters=cms.InputTag("hltIter2ClustersRefRemoval"),
                      hitErrorRPhi=cms.double(0.0051)),
        MTEC=cms.PSet(),
        MTIB=cms.PSet(),
        TID=cms.PSet(),
        TOB=cms.PSet(),
        BPix=cms.PSet(HitProducer=cms.string("hltSiPixelRecHits"),
                      hitErrorRZ=cms.double(0.006),
                      useErrorsFromParam=cms.bool(True),
                      TTRHBuilder=cms.string("hltESPTTRHBuilderPixelOnly"),
                      skipClusters=cms.InputTag("hltIter2ClustersRefRemoval"),
                      hitErrorRPhi=cms.double(0.0027)),
        TIB=cms.PSet())

    from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
    process.hltIter2PFlowPixelHitDoublets.seedingLayers = "hltIter2PixelLayerTriplets"
    process.hltIter2PFlowPixelHitDoublets.produceIntermediateHitDoublets = True
    process.hltIter2PFlowPixelHitDoublets.produceSeedingHitSets = False
    process.hltIter2PFlowPixelHitDoublets.seedingLayers = "hltIter2PixelLayerTriplets"
    process.hltIter2PFlowPixelHitTriplets = _pixelTripletHLTEDProducer.clone(
        doublets="hltIter2PFlowPixelHitDoublets",
        useBending=cms.bool(True),
        useFixedPreFiltering=cms.bool(False),
        maxElement=cms.uint32(100000),
        phiPreFiltering=cms.double(0.3),
        extraHitRPhitolerance=cms.double(0.032),
        useMultScattering=cms.bool(True),
        extraHitRZtolerance=cms.double(0.037),
        SeedComparitorPSet=cms.PSet(ComponentName=cms.string("none")),
        produceSeedingHitSets=True,
    )

    def _copy(old, new, skip=[]):
        skipSet = set(skip)
        for key in old.parameterNames_():
            if key not in skipSet:
                setattr(new, key, getattr(old, key))

    from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsTripletOnlyEDProducer_cfi import seedCreatorFromRegionConsecutiveHitsTripletOnlyEDProducer as _seedCreatorFromRegionConsecutiveHitsTripletOnlyEDProducer
    process.hltIter2PFlowPixelSeeds = _seedCreatorFromRegionConsecutiveHitsTripletOnlyEDProducer.clone(
        seedingHitSets="hltIter2PFlowPixelHitTriplets")
    _copy(process.HLTSeedFromConsecutiveHitsTripletOnlyCreator,
          process.hltIter2PFlowPixelSeeds,
          skip=["ComponentName"])

    process.HLTIterativeTrackingIteration2 = cms.Sequence(
        process.hltIter2ClustersRefRemoval +
        process.hltIter2MaskedMeasurementTrackerEvent +
        process.hltIter2PixelLayerTriplets +
        process.hltIter2PFlowPixelTrackingRegions +
        process.hltIter2PFlowPixelClusterCheck +
        process.hltIter2PFlowPixelHitDoublets +
        process.hltIter2PFlowPixelHitTriplets +
        process.hltIter2PFlowPixelSeeds +
        process.hltIter2PFlowCkfTrackCandidates +
        process.hltIter2PFlowCtfWithMaterialTracks +
        process.hltIter2PFlowTrackCutClassifier +
        process.hltIter2PFlowTrackSelectionHighPurity)

    # Need to operate on Paths as well...
    for seqs in [process.sequences_(), process.paths_()]:
        for seqName, seq in seqs.iteritems():
            from FWCore.ParameterSet.SequenceTypes import ModuleNodeVisitor
            l = list()
            v = ModuleNodeVisitor(l)
            seq.visit(v)

            if process.hltPixelTracks in l and not process.hltPixelLayerQuadruplets in l:
                seq.remove(
                    process.hltPixelLayerTriplets
                )  # note that this module does not necessarily exist in sequence 'seq', if it doesn't, it does not get removed
                index = seq.index(process.hltPixelTracksHitDoublets)
                seq.insert(index, process.hltPixelLayerQuadruplets)
                index = seq.index(process.hltPixelTracksHitTriplets)
                seq.remove(process.hltPixelTracksHitTriplets)
                seq.insert(index, process.hltPixelTracksHitQuadruplets)

    # Remove entirely to avoid warning from the early deleter
    del process.hltPixelTracksHitTriplets

    return process
    useBendingCorrection = True,
    CAThetaCut = 0.004,
    CAPhiCut = 0.07,
    CAHardPtCut = 0.3,
)
trackingPhase2PU140.toModify(highPtTripletStepHitTriplets,CAThetaCut = 0.003,CAPhiCut = 0.06,CAHardPtCut = 0.5)

from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer
highPtTripletStepSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets = "highPtTripletStepHitTriplets",
)

trackingPhase1QuadProp.toModify(highPtTripletStepHitDoublets, layerPairs = [0]) # layer pair (0,1)
_highPtTripletStepHitTriplets_propagation = _pixelTripletHLTEDProducer.clone(
    doublets = "highPtTripletStepHitDoublets",
    produceSeedingHitSets = True,
    SeedComparitorPSet = highPtTripletStepHitTriplets.SeedComparitorPSet,
)
trackingPhase1QuadProp.toReplaceWith(highPtTripletStepHitTriplets, _highPtTripletStepHitTriplets_propagation)

# QUALITY CUTS DURING TRACK BUILDING
import TrackingTools.TrajectoryFiltering.TrajectoryFilter_cff as _TrajectoryFilter_cff
_highPtTripletStepTrajectoryFilterBase = _TrajectoryFilter_cff.CkfBaseTrajectoryFilter_block.clone(
    minimumNumberOfHits = 3,
    minPt = 0.2,
)
highPtTripletStepTrajectoryFilterBase = _highPtTripletStepTrajectoryFilterBase.clone(
    maxCCCLostHits = 0,
    minGoodStripCharge = dict(refToPSet_ = 'SiStripClusterChargeCutLoose')
)
trackingPhase2PU140.toReplaceWith(highPtTripletStepTrajectoryFilterBase, _highPtTripletStepTrajectoryFilterBase)
Exemple #12
0
    ptMin = 1.0,
    originRadius = 0.02,
    nSigmaZ = 4.0
))
from RecoTracker.TkHitPairs.hitPairEDProducer_cfi import hitPairEDProducer as _hitPairEDProducer
tripletElectronHitDoublets = _hitPairEDProducer.clone(
    seedingLayers = "tripletElectronSeedLayers",
    trackingRegions = "tripletElectronTrackingRegions",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)
from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi
tripletElectronHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "tripletElectronHitDoublets",
    maxElement = 1000000,
    produceSeedingHitSets = True,
)
from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer
tripletElectronSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets = "tripletElectronHitTriplets",
)
trackingPhase1PU70.toModify(tripletElectronHitTriplets,
    maxElement = 0, # not sure if this has any effect
)
trackingPhase2PU140.toModify(tripletElectronHitTriplets,
    maxElement = 0,
)

from RecoLocalTracker.SubCollectionProducers.SeedClusterRemover_cfi import seedClusterRemover
tripletElectronClusterMask = seedClusterRemover.clone(
from RecoHI.HiTracking.HIPixelTrackFilter_cff import *
from RecoHI.HiTracking.HITrackingRegionProducer_cfi import *
from RecoTracker.TkSeedingLayers.PixelLayerTriplets_cfi import *

# Hit ntuplets
hiPixel3ProtoTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck = "",
    seedingLayers = "PixelLayerTriplets",
    trackingRegions = "hiTrackingRegionFromClusterVtx",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)

hiPixel3ProtoTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "hiPixel3ProtoTracksHitDoublets",
    maxElement = 100000,
    produceSeedingHitSets = True,
)

# Pixel tracks
hiPixel3ProtoTracks = cms.EDProducer( "PixelTrackProducer",

    passLabel  = cms.string('Pixel triplet tracks for vertexing'),
	
    # Ordered Hits
    SeedingHitSets = cms.InputTag("hiPixel3ProtoTracksHitTriplets"),
	
    # Fitter
    Fitter = cms.InputTag("pixelFitterByHelixProjections"),
	
    # Filter
hiPixel3PrimTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck = "",
    seedingLayers = "PixelLayerTriplets",
    trackingRegions = "hiTrackingRegionWithVertex",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)
from Configuration.Eras.Modifier_trackingPhase1_cff import trackingPhase1
trackingPhase1.toModify(hiPixel3PrimTracksHitDoublets,
    seedingLayers = "hiPixelLayerQuadruplets"
)


hiPixel3PrimTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "hiPixel3PrimTracksHitDoublets",
    maxElement = 1000000, # increase threshold for triplets in generation step (default: 100000)
    produceSeedingHitSets = True,
    produceIntermediateHitTriplets = True,
)

from RecoPixelVertexing.PixelTriplets.caHitQuadrupletEDProducer_cfi import caHitQuadrupletEDProducer as _caHitQuadrupletEDProducer
hiPixel3PrimTracksHitDoubletsCA = hiPixel3PrimTracksHitDoublets.clone()
hiPixel3PrimTracksHitDoubletsCA.layerPairs = [0,1,2]

hiPixel3PrimTracksHitQuadrupletsCA = _caHitQuadrupletEDProducer.clone(
    doublets = "hiPixel3PrimTracksHitDoubletsCA",
    extraHitRPhitolerance = hiPixel3PrimTracksHitTriplets.extraHitRPhitolerance,
    SeedComparitorPSet = hiPixel3PrimTracksHitTriplets.SeedComparitorPSet,
    maxChi2 = dict(
        pt1    = 0.7, pt2    = 2,
        value1 = 200, value2 = 50,
    ),
                    fixedError=0.2,
                    VertexCollection="hiSelectedVertex",
                    ptMin=0.4,
                    useFoundVertices=True,
                    originRadius=0.02))
hiLowPtTripletStepTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck="",
    seedingLayers="hiLowPtTripletStepSeedLayers",
    trackingRegions="hiLowPtTripletStepTrackingRegions",
    maxElement=0,
    produceIntermediateHitDoublets=True,
)
hiLowPtTripletStepTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets="hiLowPtTripletStepTracksHitDoublets",
    maxElement=5000000,
    SeedComparitorPSet=RecoPixelVertexing.PixelLowPtUtilities.
    LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone(
    ),
    produceSeedingHitSets=True,
)
hiLowPtTripletStepPixelTracksFilter = hiFilter.clone(
    nSigmaLipMaxTolerance=4.0,
    nSigmaTipMaxTolerance=4.0,
    lipMax=0,
    ptMin=0.4,
)
hiLowPtTripletStepPixelTracks = cms.EDProducer(
    "PixelTrackProducer",
    passLabel=cms.string('Pixel primary tracks with vertex constraint'),

    # Ordered Hits
    SeedingHitSets=cms.InputTag("hiLowPtTripletStepTracksHitTriplets"),
Exemple #16
0
    fitFastCircleChi2Cut=True,
    CAThetaCut=0.0017,
    CAPhiCut=0.3,
)
trackingPhase2PU140.toModify(lowPtQuadStepHitQuadruplets,
                             CAThetaCut=0.0015,
                             CAPhiCut=0.25)

from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer
lowPtQuadStepSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets="lowPtQuadStepHitQuadruplets", )

trackingPhase1QuadProp.toModify(lowPtQuadStepHitDoublets, layerPairs=[0])
lowPtQuadStepHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets="lowPtQuadStepHitDoublets",
    produceIntermediateHitTriplets=True,
    SeedComparitorPSet=lowPtQuadStepHitQuadruplets.SeedComparitorPSet,
)
from RecoPixelVertexing.PixelTriplets.pixelQuadrupletEDProducer_cfi import pixelQuadrupletEDProducer as _pixelQuadrupletEDProducer
_lowPtQuadStepHitQuadruplets_propagation = _pixelQuadrupletEDProducer.clone(
    triplets="lowPtQuadStepHitTriplets",
    extraHitRZtolerance=lowPtQuadStepHitTriplets.extraHitRZtolerance,
    extraHitRPhitolerance=lowPtQuadStepHitTriplets.extraHitRPhitolerance,
    maxChi2=dict(
        pt1=0.8,
        pt2=2,
        value1=2000,
        value2=100,
        enabled=True,
    ),
    extraPhiTolerance=dict(
Exemple #17
0
            originRadius = 0.02
        )
))

from RecoTracker.TkHitPairs.hitPairEDProducer_cfi import hitPairEDProducer as _hitPairEDProducer
tripletElectronHitDoublets = _hitPairEDProducer.clone(
    seedingLayers   = 'tripletElectronSeedLayers',
    trackingRegions = 'tripletElectronTrackingRegions',
    maxElement      = 50000000,
    produceIntermediateHitDoublets = True,
)
from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi
tripletElectronHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets   = 'tripletElectronHitDoublets',
    maxElement = 1000000,
    produceSeedingHitSets = True,
)
from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer
tripletElectronSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets = 'tripletElectronHitTriplets',
)
trackingPhase2PU140.toModify(tripletElectronHitTriplets,
    maxElement = 0,
)

from RecoLocalTracker.SubCollectionProducers.SeedClusterRemover_cfi import seedClusterRemover
tripletElectronClusterMask = seedClusterRemover.clone(
    trajectories = 'tripletElectronSeeds',
    oldClusterRemovalInfo = cms.InputTag('pixelLessStepSeedClusterMask')
)
    CAHardPtCut=0.3,
)
trackingPhase2PU140.toModify(highPtTripletStepHitTriplets,
                             CAThetaCut=0.003,
                             CAPhiCut=0.06,
                             CAHardPtCut=0.5)

from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer
highPtTripletStepSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets="highPtTripletStepHitTriplets", )

trackingPhase1QuadProp.toModify(highPtTripletStepHitDoublets,
                                layerPairs=[0])  # layer pair (0,1)
_highPtTripletStepHitTriplets_propagation = _pixelTripletHLTEDProducer.clone(
    doublets="highPtTripletStepHitDoublets",
    produceSeedingHitSets=True,
    SeedComparitorPSet=highPtTripletStepHitTriplets.SeedComparitorPSet,
)
trackingPhase1QuadProp.toReplaceWith(
    highPtTripletStepHitTriplets, _highPtTripletStepHitTriplets_propagation)

# QUALITY CUTS DURING TRACK BUILDING
import TrackingTools.TrajectoryFiltering.TrajectoryFilter_cff as _TrajectoryFilter_cff
_highPtTripletStepTrajectoryFilterBase = _TrajectoryFilter_cff.CkfBaseTrajectoryFilter_block.clone(
    minimumNumberOfHits=3,
    minPt=0.2,
)
highPtTripletStepTrajectoryFilterBase = _highPtTripletStepTrajectoryFilterBase.clone(
    maxCCCLostHits=0,
    minGoodStripCharge=dict(refToPSet_='SiStripClusterChargeCutLoose'))
trackingPhase2PU140.toReplaceWith(highPtTripletStepTrajectoryFilterBase,
from RecoHI.HiTracking.HIPixelTrackFilter_cff import *
from RecoHI.HiTracking.HITrackingRegionProducer_cfi import *
from RecoTracker.TkSeedingLayers.PixelLayerTriplets_cfi import *

# Hit ntuplets
hiPixel3ProtoTracksHitDoublets = _hitPairEDProducer.clone(
    clusterCheck="",
    seedingLayers="PixelLayerTriplets",
    trackingRegions="hiTrackingRegionFromClusterVtx",
    maxElement=50000000,
    produceIntermediateHitDoublets=True,
)

hiPixel3ProtoTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets="hiPixel3ProtoTracksHitDoublets",
    maxElement=100000,
    produceSeedingHitSets=True,
)

# Pixel tracks
hiPixel3ProtoTracks = cms.EDProducer(
    "PixelTrackProducer",
    passLabel=cms.string('Pixel triplet tracks for vertexing'),

    # Ordered Hits
    SeedingHitSets=cms.InputTag("hiPixel3ProtoTracksHitTriplets"),

    # Fitter
    Fitter=cms.InputTag("pixelFitterByHelixProjections"),

    # Filter
Exemple #20
0
trackingPhase2PU140.toModify(initialStepTrackingRegions, RegionPSet = dict(ptMin = 0.6,originRadius = 0.03))

# seeding
from RecoTracker.TkHitPairs.hitPairEDProducer_cfi import hitPairEDProducer as _hitPairEDProducer
initialStepHitDoublets = _hitPairEDProducer.clone(
    seedingLayers = "initialStepSeedLayers",
    trackingRegions = "initialStepTrackingRegions",
    maxElement = 0,
    produceIntermediateHitDoublets = True,
)
from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
from RecoPixelVertexing.PixelLowPtUtilities.ClusterShapeHitFilterESProducer_cfi import *
import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi
initialStepHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets = "initialStepHitDoublets",
    produceSeedingHitSets = True,
    SeedComparitorPSet = RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone()
)
from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer
initialStepSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets = "initialStepHitTriplets",
)
from RecoPixelVertexing.PixelTriplets.caHitQuadrupletEDProducer_cfi import caHitQuadrupletEDProducer as _caHitQuadrupletEDProducer
_initialStepCAHitQuadruplets = _caHitQuadrupletEDProducer.clone(
    doublets = "initialStepHitDoublets",
    extraHitRPhitolerance = initialStepHitTriplets.extraHitRPhitolerance,
    SeedComparitorPSet = initialStepHitTriplets.SeedComparitorPSet,
    maxChi2 = dict(
        pt1    = 0.7, pt2    = 2,
        value1 = 200, value2 = 50,
    ),
Exemple #21
0
# seeding
from RecoTracker.TkHitPairs.hitPairEDProducer_cfi import hitPairEDProducer as _hitPairEDProducer

lowPtTripletStepHitDoublets = _hitPairEDProducer.clone(
    seedingLayers="lowPtTripletStepSeedLayers",
    trackingRegions="lowPtTripletStepTrackingRegions",
    maxElement=0,
    produceIntermediateHitDoublets=True,
)
from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
from RecoPixelVertexing.PixelLowPtUtilities.ClusterShapeHitFilterESProducer_cfi import *
import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi

lowPtTripletStepHitTriplets = _pixelTripletHLTEDProducer.clone(
    doublets="lowPtTripletStepHitDoublets",
    produceSeedingHitSets=True,
    SeedComparitorPSet=RecoPixelVertexing.PixelLowPtUtilities.
    LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone(
    ))
from RecoTracker.TkSeedGenerator.seedCreatorFromRegionConsecutiveHitsEDProducer_cff import seedCreatorFromRegionConsecutiveHitsEDProducer as _seedCreatorFromRegionConsecutiveHitsEDProducer

lowPtTripletStepSeeds = _seedCreatorFromRegionConsecutiveHitsEDProducer.clone(
    seedingHitSets="lowPtTripletStepHitTriplets", )

from RecoPixelVertexing.PixelTriplets.caHitTripletEDProducer_cfi import caHitTripletEDProducer as _caHitTripletEDProducer

trackingPhase1.toModify(lowPtTripletStepHitDoublets,
                        layerPairs=[0, 1])  # layer pairs (0,1), (1,2)
trackingPhase1.toReplaceWith(
    lowPtTripletStepHitTriplets,
    _caHitTripletEDProducer.clone(
        doublets="lowPtTripletStepHitDoublets",
Exemple #22
0
def addL3ToHLT(process):
	def filters_by_type(process, type):
		return (filter for filter in process._Process__filters.values() if filter._TypedParameterizable__type == type)
	
	for l3Filter in filters_by_type(process, 'HLTMuonL3PreFilter'):
		if hasattr(l3Filter, 'CandTag'):
			if (l3Filter.CandTag==cms.InputTag("hltL3MuonCandidates")):
				l3Filter.CandTag=cms.InputTag("hltIterL3MuonCandidates")
				l3Filter.InputLinks=cms.InputTag( "hltIterL3MuonsLinksCombination")

	if hasattr(process, 'hltPixelTracksForSeedsL3Muon'):
		process.hltPixelTracksForSeedsL3Muon.RegionFactoryPSet.RegionPSet.input=cms.InputTag("hltIterL3MuonCandidates")
	if hasattr(process, 'hltIter1L3MuonPixelSeeds'):
		process.hltIter1L3MuonPixelSeeds.RegionFactoryPSet.RegionPSet.input=cms.InputTag("hltIterL3MuonCandidates")
	if hasattr(process, 'hltIter2L3MuonPixelSeeds'):
		process.hltIter2L3MuonPixelSeeds.RegionFactoryPSet.RegionPSet.input=cms.InputTag("hltIterL3MuonCandidates")

	def producers_by_type(process, type):
    		return (module for module in process._Process__producers.values() if module._TypedParameterizable__type == type)

	for PFModule in producers_by_type(process, 'MuonHLTRechitInRegionsProducer'):
		if hasattr(PFModule, 'l1TagIsolated'):
			if(PFModule.l1TagIsolated==cms.InputTag("hltL3MuonCandidates")):
				PFModule.l1TagIsolated=cms.InputTag("hltIterL3MuonCandidates")
	#Isolation paths:
	for PFModule in producers_by_type(process, 'L3MuonCombinedRelativeIsolationProducer'):
		if hasattr(PFModule, 'inputMuonCollection'):
			if(PFModule.inputMuonCollection==cms.InputTag("hltL3MuonCandidates")):
				PFModule.inputMuonCollection=cms.InputTag("hltIterL3MuonCandidates")

	for l3Filter in filters_by_type(process, 'HLTMuonIsoFilter'):
		if hasattr(l3Filter, 'CandTag'):
			if (l3Filter.CandTag==cms.InputTag("hltL3MuonCandidates")):
				l3Filter.CandTag=cms.InputTag("hltIterL3MuonCandidates")

	for l3Filter in filters_by_type(process, 'HLTMuonDimuonL3Filter'):
		if hasattr(l3Filter, 'CandTag'):
			if (l3Filter.CandTag==cms.InputTag("hltL3MuonCandidates")):
				l3Filter.CandTag=cms.InputTag("hltIterL3MuonCandidates")

	if hasattr(process, 'hltMuonEcalPFClusterIsoForMuons'):
		process.hltMuonEcalPFClusterIsoForMuons.recoCandidateProducer = cms.InputTag("hltIterL3MuonCandidates")

	if hasattr(process, 'hltDiMuonLinks'):
		process.hltDiMuonLinks.LinkCollection = cms.InputTag("hltIterL3MuonsLinksCombination")
	#############################################################
	#Making Pixel Vertices:
        from RecoTracker.TkTrackingRegions.globalTrackingRegionFromBeamSpot_cfi import globalTrackingRegionFromBeamSpot as _globalTrackingRegionFromBeamSpot
        from RecoTracker.TkHitPairs.hitPairEDProducer_cfi import hitPairEDProducer as _hitPairEDProducer
        from RecoPixelVertexing.PixelTriplets.pixelTripletHLTEDProducer_cfi import pixelTripletHLTEDProducer as _pixelTripletHLTEDProducer
        from RecoPixelVertexing.PixelTrackFitting.pixelTrackFilterByKinematics_cfi import pixelTrackFilterByKinematics as _pixelTrackFilterByKinematics
        from RecoPixelVertexing.PixelTrackFitting.pixelFitterByHelixProjections_cfi import pixelFitterByHelixProjections as _pixelFitterByHelixProjections
        from RecoPixelVertexing.PixelTrackFitting.pixelTrackCleanerBySharedHits_cfi import pixelTrackCleanerBySharedHits as _pixelTrackCleanerBySharedHits
        process.hltPixelTracksTrackingRegions = _globalTrackingRegionFromBeamSpot.clone(
            precise = True,
            originRadius = 0.2,
            ptMin = 0.9,
            originHalfLength = 24.0,
	    beamSpot = "hltOnlineBeamSpot"
        )
        process.hltPixelTracksHitDoublets = _hitPairEDProducer.clone(
            clusterCheck = "",
            seedingLayers = "hltPixelLayerTriplets",
            trackingRegions = "hltPixelTracksTrackingRegions",
            maxElement = 0,
            produceIntermediateHitDoublets = True,
        )
        process.hltPixelTracksHitTriplets = _pixelTripletHLTEDProducer.clone(
            useBending = True,
	    useFixedPreFiltering = False,
	    maxElement = 100000,
	    phiPreFiltering = 0.3,
	    extraHitRPhitolerance = 0.06,
	    useMultScattering = True,
	    SeedComparitorPSet = dict(
                ComponentName = "LowPtClusterShapeSeedComparitor",
	        clusterShapeCacheSrc = cms.InputTag( "hltSiPixelClustersCache" )
            ),
	    extraHitRZtolerance = 0.06,
        )
        process.hltPixelTracksFitter = _pixelFitterByHelixProjections.clone()
        process.hltPixelTrackFilterByKinematics = _pixelTrackFilterByKinematics.clone()
        process.hltPixelTracksCleaner = _pixelTrackCleanerBySharedHits.clone(
            ComponentName = "hltPixelTracksCleaner",
        )
	process.hltPixelTracks = cms.EDProducer( "PixelTrackProducer",
	    Filter = cms.InputTag("hltPixelTrackFilterByKinematics"),
	    passLabel = cms.string( "Pixel triplet primary tracks with vertex constraint" ),
	    FitterPSet = cms.InputTag("hltPixelTracksFitter"),
	    Cleaner = cms.string("hltPixelTracksCleaner"),
            SeedingHitSets = cms.InputTag("hltPixelTracksHitTriplets"),
	)
	
	process.hltPixelVertices = cms.EDProducer( "PixelVertexProducer",
	    WtAverage = cms.bool( True ),
	    Method2 = cms.bool( True ),
	    beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	    PVcomparer = cms.PSet(  refToPSet_ = cms.string( "HLTPSetPvClusterComparerForIT" ) ),
	    Verbosity = cms.int32( 0 ),
	    UseError = cms.bool( True ),
	    TrackCollection = cms.InputTag( "hltPixelTracks" ),
	    PtMin = cms.double( 1.0 ),
	    NTrkMin = cms.int32( 2 ),
	    ZOffset = cms.double( 5.0 ),
	    Finder = cms.string( "DivisiveVertexFinder" ),
	    ZSeparation = cms.double( 0.05 )
	)
	#/Making Pixel Vertices, could probably use the following PTP tho?
	
	process.HLTRecopixelvertexingSequence = cms.Sequence(
	 process.hltPixelLayerTriplets
         + process.hltPixelTracksTrackingRegions
         + process.hltPixelTracksHitDoublets
         + process.hltPixelTracksHitTriplets
         + process.hltPixelTracksFitter
	 + process.hltPixelTrackFilterByKinematics
	 + process.hltPixelTracks
	 + process.hltPixelVertices
	)
	
	######### Define Master MTRB ROI, OPTIMISED FOR IO 
	MasterMuonTrackingRegionBuilder = cms.PSet(
	        Rescale_eta = cms.double( 3.0 ),
	        Rescale_phi = cms.double( 3.0 ),
	        Rescale_Dz = cms.double( 4.0 ),                 
	        EscapePt = cms.double( 3.0 ),                   
	        EtaR_UpperLimit_Par1 = cms.double( 0.25 ),      
	        EtaR_UpperLimit_Par2 = cms.double( 0.15 ),      
	        PhiR_UpperLimit_Par1 = cms.double( 0.6 ),       
	        PhiR_UpperLimit_Par2 = cms.double( 0.2 ),       
	        UseVertex = cms.bool( False ),                  
	        Pt_fixed = cms.bool( False ),                   
	        Z_fixed = cms.bool( False ),    
	        Phi_fixed = cms.bool( True ),   
	        Eta_fixed = cms.bool( True ),   
	        Pt_min = cms.double( 3.0 ),     
	        Phi_min = cms.double( 0.1 ),
	        Eta_min = cms.double( 0.1 ),
	        DeltaZ = cms.double( 24.2 ),    
	        DeltaR = cms.double( 0.025 ),   
	        DeltaEta = cms.double( 0.2 ),  
	        DeltaPhi = cms.double( 0.15 ), 
	        maxRegions = cms.int32( 2 ),
	        precise = cms.bool( True ),
	        OnDemand = cms.int32( -1 ),
	        MeasurementTrackerName = cms.InputTag( "hltESPMeasurementTracker" ),
	        beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	        vertexCollection = cms.InputTag( "pixelVertices" ), 
	        input = cms.InputTag( 'hltL2Muons','UpdatedAtVtx' )
	)

	
	IterMasterMuonTrackingRegionBuilder = MasterMuonTrackingRegionBuilder
	IterMasterMuonTrackingRegionBuilder.input = cms.InputTag( 'hltL2SelectorForL3OI')	#Switch off for IO Only
	
	
	########## OI Algorthim:
	#Trajectory Filter
	process.HLTPSetCkfTrajectoryFilterIterL3OI = cms.PSet(
	   minPt = cms.double( 0.9 ),
	   minHitsMinPt = cms.int32( 3 ),
	   ComponentType = cms.string( "CkfBaseTrajectoryFilter" ),
	   maxLostHits = cms.int32( 1 ),
	   maxNumberOfHits = cms.int32( -1 ),
	   maxConsecLostHits = cms.int32( 1 ),
	   minimumNumberOfHits = cms.int32( 5 ),
	   nSigmaMinPt = cms.double( 5.0 ),
	   chargeSignificance = cms.double( -1.0 ),
	   minGoodStripCharge = cms.PSet(  refToPSet_ = cms.string( "HLTSiStripClusterChargeCutNone" ) ),
	   maxCCCLostHits = cms.int32( 9999 ),
	   seedExtension = cms.int32( 0 ),
	   strictSeedExtension = cms.bool( False ),
	   minNumberOfHitsForLoopers = cms.int32( 13 ),
	   minNumberOfHitsPerLoop = cms.int32( 4 ),
	   extraNumberOfHitsBeforeTheFirstLoop = cms.int32( 4 ),
	   maxLostHitsFraction = cms.double( 999.0 ),
	   constantValueForLostHitsFractionFilter = cms.double( 1.0 ),
	   seedPairPenalty = cms.int32( 0 )
	)
	
	process.HLTPSetCkfTrajectoryBuilderIterL3OI = cms.PSet(
	  propagatorAlong = cms.string( "PropagatorWithMaterial" ),
	  trajectoryFilter = cms.PSet(  refToPSet_ = cms.string( "HLTPSetCkfTrajectoryFilterIterL3OI" ) ),
	  maxCand = cms.int32( 5 ),
	  ComponentType = cms.string( "CkfTrajectoryBuilder" ),
	  propagatorOpposite = cms.string( "PropagatorWithMaterialOpposite" ),
	  MeasurementTrackerName = cms.string( "hltESPMeasurementTracker" ),
	  estimator = cms.string( "hltESPChi2MeasurementEstimator30" ),
	  TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	  updator = cms.string( "hltESPKFUpdator" ),
	  alwaysUseInvalidHits = cms.bool( True ),
	  intermediateCleaning = cms.bool( True ),
	  lostHitPenalty = cms.double( 1.0 )
	)
	
	process.hltESPChi2MeasurementEstimator100 = cms.ESProducer( "Chi2MeasurementEstimatorESProducer",
	  MaxChi2 = cms.double( 100.0 ),
	  nSigma = cms.double( 4.0 ),
	  ComponentName = cms.string( "hltESPChi2MeasurementEstimator100" )
	)
	
	
	#OI Seeding:
	process.hltIterL3OISeedsFromL2Muons = cms.EDProducer("TSGForOI",
	        MeasurementTrackerEvent = cms.InputTag("hltSiStripClusters"),
	        UseHitSeeds = cms.bool(True),
	        adjustErrorsDynamicallyForHitless = cms.bool(True),
	        adjustErrorsDynamicallyForHits = cms.bool(True),
	        debug = cms.untracked.bool(False),
	        estimator = cms.string('hltESPChi2MeasurementEstimator100'),
	        fixedErrorRescaleFactorForHitless = cms.double(5.0),
	        fixedErrorRescaleFactorForHits = cms.double(2.0),
		pT1 = cms.double(13.0),				       
		pT2 = cms.double(30.0),				       
		pT3 = cms.double(70.0),				       
		eta1 = cms.double(1.0),				       
		eta2 = cms.double(1.4),				       
                SF1 = cms.double(3.0),
                SF2 = cms.double(4.0),
                SF3 = cms.double(5.0),
                SF4 = cms.double(7.0),
                SF5 = cms.double(10.0),
		hitsToTry = cms.int32(5),
	        layersToTry = cms.int32(3),
	        maxEtaForTOB = cms.double(1.1),
	        maxSeeds = cms.uint32(1),
	        minEtaForTEC = cms.double(0.9),
	        src = cms.InputTag("hltL2Muons","UpdatedAtVtx")
	)
	
	###---------- Trajectory Cleaner, deciding how overlapping track candidates are arbitrated  ----------------
	import TrackingTools.TrajectoryCleaning.TrajectoryCleanerBySharedHits_cfi
	process.muonSeededTrajectoryCleanerBySharedHits = TrackingTools.TrajectoryCleaning.TrajectoryCleanerBySharedHits_cfi.trajectoryCleanerBySharedHits.clone(
	    ComponentName = cms.string('muonSeededTrajectoryCleanerBySharedHits'),
	    fractionShared = cms.double(0.1),
	    ValidHitBonus = cms.double(1000.0),
	    MissingHitPenalty = cms.double(1.0),
	    ComponentType = cms.string('TrajectoryCleanerBySharedHits'),
	    allowSharedFirstHit = cms.bool(True)
	)
	
	#OI Trajectory Building:
	process.hltIterL3OITrackCandidates = cms.EDProducer("CkfTrackCandidateMaker",
	    RedundantSeedCleaner = cms.string('CachingSeedCleanerBySharedInput'),
	    TrajectoryCleaner = cms.string('muonSeededTrajectoryCleanerBySharedHits'), #TrajectoryCleanerBySharedHits
	    cleanTrajectoryAfterInOut = cms.bool(True),
	    useHitsSplitting = cms.bool(True),
	    doSeedingRegionRebuilding = cms.bool(True),
	    maxNSeeds = cms.uint32(500000),
	    maxSeedsBeforeCleaning = cms.uint32(5000),
	    src = cms.InputTag('hltIterL3OISeedsFromL2Muons'),
	    SimpleMagneticField = cms.string(''),
	    NavigationSchool = cms.string('SimpleNavigationSchool'),
	    TrajectoryBuilder = cms.string('CkfTrajectoryBuilder'),
	    TrajectoryBuilderPSet = cms.PSet(refToPSet_ = cms.string('HLTPSetCkfTrajectoryBuilderIterL3OI')),      #Was HLTPSetCkfTrajectoryBuilder
	    TransientInitialStateEstimatorParameters = cms.PSet(
	        propagatorAlongTISE = cms.string('PropagatorWithMaterialParabolicMf'),  # parabolic magnetic field
	        propagatorOppositeTISE = cms.string('PropagatorWithMaterialParabolicMfOpposite'), # parabolic magnetic field
	        numberMeasurementsForFit = cms.int32(4)
	    ),
	    MeasurementTrackerEvent = cms.InputTag("hltSiStripClusters"),
	    reverseTrajectories = cms.bool( True ),
	    produceSeedStopReasons = cms.bool(False)
	)
	
	###-------------  Fitter-Smoother -------------------
#	process.load("TrackingTools.MaterialEffects.RungeKuttaTrackerPropagator_cfi")
#	import TrackingTools.TrackFitters.RungeKuttaFitters_cff
	process.load("TrackingTools.TrackFitters.RungeKuttaFitters_cff")

	process.RKTrajectoryFitter.Propagator = "hltESPRungeKuttaTrackerPropagator"
	process.RKTrajectorySmoother.Propagator = "hltESPRungeKuttaTrackerPropagator"
	process.RKTrajectoryFitter.Updator = "hltESPKFUpdator"
	process.RKTrajectorySmoother.Updator = "hltESPKFUpdator"
	process.RKTrajectoryFitter.Estimator = "hltESPChi2MeasurementEstimator30"
	process.RKTrajectorySmoother.Estimator = "hltESPChi2MeasurementEstimator30"
	process.RKTrajectoryFitter.RecoGeometry = "hltESPGlobalDetLayerGeometry"
	process.RKTrajectorySmoother.RecoGeometry = "hltESPGlobalDetLayerGeometry"

	process.muonSeededFittingSmootherWithOutliersRejectionAndRK = TrackingTools.TrackFitters.RungeKuttaFitters_cff.KFFittingSmootherWithOutliersRejectionAndRK.clone(
	    ComponentName = cms.string("muonSeededFittingSmootherWithOutliersRejectionAndRK"),
	    BreakTrajWith2ConsecutiveMissing = cms.bool(False),
	    EstimateCut = cms.double(50.), ## was 20.
	)

	#OI Track Producer:
	process.hltIterL3MuonSeededTracksOutIn = cms.EDProducer("TrackProducer",
	    useSimpleMF = cms.bool(False),
	    SimpleMagneticField = cms.string(""),
	    src = cms.InputTag("hltIterL3OITrackCandidates"),       #Modified
	    clusterRemovalInfo = cms.InputTag(""),
	    beamSpot = cms.InputTag("hltOnlineBeamSpot"),       #Modified
	    Fitter = cms.string('muonSeededFittingSmootherWithOutliersRejectionAndRK'),       #Modified
	    useHitsSplitting = cms.bool(False),
	    alias = cms.untracked.string('ctfWithMaterialTracks'),
	    TrajectoryInEvent = cms.bool(True),
	    TTRHBuilder = cms.string('hltESPTTRHBWithTrackAngle'),      #Was: WithAngleAndTemplate
	    AlgorithmName = cms.string('iter10'),       #Modified
	    Propagator = cms.string('hltESPRungeKuttaTrackerPropagator'), #Others use PropagatorWithMaterial
	    GeometricInnerState = cms.bool(False),
	    NavigationSchool = cms.string('SimpleNavigationSchool'),  #Others are blank        
	    MeasurementTracker = cms.string("hltESPMeasurementTracker"),
	    MeasurementTrackerEvent = cms.InputTag('hltSiStripClusters'),       #Modified     
	)
	
	#OI L3 Muon Producer:
	process.hltL3MuonsIterL3OI = cms.EDProducer( "L3MuonProducer",
	    ServiceParameters = cms.PSet(
	      Propagators = cms.untracked.vstring( 'hltESPSmartPropagatorAny',
	        'SteppingHelixPropagatorAny',
	        'hltESPSmartPropagator',
	        'hltESPSteppingHelixPropagatorOpposite' ),
	      RPCLayers = cms.bool( True ),
	      UseMuonNavigation = cms.untracked.bool( True )
	    ),
	    L3TrajBuilderParameters = cms.PSet(
	      ScaleTECyFactor = cms.double( -1.0 ),
	      GlbRefitterParameters = cms.PSet(
	        TrackerSkipSection = cms.int32( -1 ),
	        DoPredictionsOnly = cms.bool( False ),
	        PropDirForCosmics = cms.bool( False ),
	        HitThreshold = cms.int32( 1 ),
	        RefitFlag = cms.bool( True ),          #Usually true
	        MuonHitsOption = cms.int32( 1 ),
	        Chi2CutRPC = cms.double( 1.0 ),
	        Fitter = cms.string( "hltESPL3MuKFTrajectoryFitter" ),
	        DTRecSegmentLabel = cms.InputTag( "hltDt4DSegments" ),
	        TrackerRecHitBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	        MuonRecHitBuilder = cms.string( "hltESPMuonTransientTrackingRecHitBuilder" ),
	        RefitDirection = cms.string( "insideOut" ),
	        CSCRecSegmentLabel = cms.InputTag( "hltCscSegments" ),
	        Chi2CutCSC = cms.double( 150.0 ),
	        Chi2CutDT = cms.double( 10.0 ),
	        RefitRPCHits = cms.bool( True ),
	        SkipStation = cms.int32( -1 ),
	        Propagator = cms.string( "hltESPSmartPropagatorAny" ),
	        TrackerSkipSystem = cms.int32( -1 ),
	        DYTthrs = cms.vint32( 30, 15 )
	      ),
	      ScaleTECxFactor = cms.double( -1.0 ),
	      TrackerRecHitBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	      MuonRecHitBuilder = cms.string( "hltESPMuonTransientTrackingRecHitBuilder" ),
#	      MuonTrackingRegionBuilder = MasterMuonTrackingRegionBuilder,      #Using the master Muon ROI params - Although it is not used
             MuonTrackingRegionBuilder = cms.PSet(
	        Rescale_eta = cms.double( 3.0 ),
	        Rescale_phi = cms.double( 3.0 ),
	        Rescale_Dz = cms.double( 4.0 ),                 
	        EscapePt = cms.double( 3.0 ),                   
	        EtaR_UpperLimit_Par1 = cms.double( 0.25 ),      
	        EtaR_UpperLimit_Par2 = cms.double( 0.15 ),      
	        PhiR_UpperLimit_Par1 = cms.double( 0.6 ),       
	        PhiR_UpperLimit_Par2 = cms.double( 0.2 ),       
	        UseVertex = cms.bool( False ),                  
	        Pt_fixed = cms.bool( False ),                   
	        Z_fixed = cms.bool( False ),    
	        Phi_fixed = cms.bool( True ),   
	        Eta_fixed = cms.bool( True ),   
	        Pt_min = cms.double( 3.0 ),     
	        Phi_min = cms.double( 0.1 ),
	        Eta_min = cms.double( 0.1 ),
	        DeltaZ = cms.double( 24.2 ),    
	        DeltaR = cms.double( 0.025 ),   
	        DeltaEta = cms.double( 0.2 ),  
	        DeltaPhi = cms.double( 0.15 ), 
	        maxRegions = cms.int32( 2 ),
	        precise = cms.bool( True ),
	        OnDemand = cms.int32( -1 ),
	        MeasurementTrackerName = cms.InputTag( "hltESPMeasurementTracker" ),
	        beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	        vertexCollection = cms.InputTag( "pixelVertices" ), 
	        input = cms.InputTag( 'hltL2Muons','UpdatedAtVtx' )
	      ),
	      RefitRPCHits = cms.bool( True ),
	      PCut = cms.double( 2.5 ),
	      TrackTransformer = cms.PSet(
	        DoPredictionsOnly = cms.bool( False ),
	        Fitter = cms.string( "hltESPL3MuKFTrajectoryFitter" ),
	        TrackerRecHitBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	        Smoother = cms.string( "hltESPKFTrajectorySmootherForMuonTrackLoader" ),
	        MuonRecHitBuilder = cms.string( "hltESPMuonTransientTrackingRecHitBuilder" ),
	        RefitDirection = cms.string( "insideOut" ),
	        RefitRPCHits = cms.bool( True ),
	        Propagator = cms.string( "hltESPSmartPropagatorAny" )
	      ),
	      GlobalMuonTrackMatcher = cms.PSet(
	        Pt_threshold1 = cms.double( 0.0 ),
	        DeltaDCut_3 = cms.double( 15.0 ),
	        MinP = cms.double( 2.5 ),
	        MinPt = cms.double( 1.0 ),
	        Chi2Cut_1 = cms.double( 50.0 ),
	        Pt_threshold2 = cms.double( 9.99999999E8 ),
	        LocChi2Cut = cms.double( 0.001 ),
	        Eta_threshold = cms.double( 1.2 ),
	        Quality_3 = cms.double( 7.0 ),
	        Quality_2 = cms.double( 15.0 ),
	        Chi2Cut_2 = cms.double( 50.0 ),
	        Chi2Cut_3 = cms.double( 200.0 ),
	        DeltaDCut_1 = cms.double( 40.0 ),
	        DeltaRCut_2 = cms.double( 0.2 ),
	        DeltaRCut_3 = cms.double( 1.0 ),
	        DeltaDCut_2 = cms.double( 10.0 ),
	        DeltaRCut_1 = cms.double( 0.1 ),
	        Propagator = cms.string( "hltESPSmartPropagator" ),
	        Quality_1 = cms.double( 20.0 )
	      ),
	      PtCut = cms.double( 1.0 ),
	      TrackerPropagator = cms.string( "SteppingHelixPropagatorAny" ),
	      tkTrajLabel = cms.InputTag( "hltIterL3MuonSeededTracksOutIn" ),    #Feed tracks from iterations into L3MTB
	      tkTrajBeamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	      tkTrajMaxChi2 = cms.double( 9999.0 ),
	      tkTrajMaxDXYBeamSpot = cms.double( 9999.0 ),      #Using same values as old algos
	      tkTrajVertex = cms.InputTag( "hltPixelVertices" ),        #From pixelVertice      #From pixelVerticesss
	      tkTrajUseVertex = cms.bool( False ),
	      matchToSeeds = cms.bool( True )
	    ),
	    TrackLoaderParameters = cms.PSet(
	      PutTkTrackIntoEvent = cms.untracked.bool( False ),
	      beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	      SmoothTkTrack = cms.untracked.bool( False ),
	      MuonSeededTracksInstance = cms.untracked.string( "L2Seeded" ),
	      Smoother = cms.string( "hltESPKFTrajectorySmootherForMuonTrackLoader" ),
	      MuonUpdatorAtVertexParameters = cms.PSet(
	        MaxChi2 = cms.double( 1000000.0 ),
	        Propagator = cms.string( "hltESPSteppingHelixPropagatorOpposite" ),
	        BeamSpotPositionErrors = cms.vdouble( 0.1, 0.1, 5.3 )
	      ),
	      VertexConstraint = cms.bool( False ),
	      DoSmoothing = cms.bool( False )    #Usually true
	    ),
	    MuonCollectionLabel = cms.InputTag( 'hltL2Muons','UpdatedAtVtx' )
	)
	
	process.hltIterL3OIL3MuonsLinksCombination = cms.EDProducer( "L3TrackLinksCombiner",
	    labels = cms.VInputTag( 'hltL3MuonsIterL3OI' )
	)
	process.hltIterL3OIL3Muons = cms.EDProducer( "L3TrackCombiner",
	    labels = cms.VInputTag( 'hltL3MuonsIterL3OI' )
	)
	process.hltIterL3OIL3MuonCandidates = cms.EDProducer( "L3MuonCandidateProducer",
	    InputLinksObjects = cms.InputTag( "hltIterL3OIL3MuonsLinksCombination" ),
	    InputObjects = cms.InputTag( "hltIterL3OIL3Muons" ),
	    MuonPtOption = cms.string( "Tracker" )
	)
	
	process.hltL2SelectorForL3IO = cms.EDProducer("HLTMuonL2SelectorForL3IO",
	    l2Src = cms.InputTag('hltL2Muons','UpdatedAtVtx'),
	    l3OISrc = cms.InputTag('hltIterL3OIL3MuonCandidates'),
	    InputLinks = cms.InputTag('hltIterL3OIL3MuonsLinksCombination'),					      
#	    useOuterHitPosition = cms.bool( True ) ,
	    applyL3Filters = cms.bool( False ), 					      
#	    xDiffMax = cms.double( 0.5 ) ,
#            yDiffMax = cms.double( 0.5 ) ,
#            zDiffMax = cms.double( 9999.0 ) ,
#            dRDiffMax  = cms.double( 0.01 ),
            MaxNormalizedChi2 = cms.double( 20.0 ),
            MaxPtDifference = cms.double( 0.3 ),
            MinNhits = cms.int32( 1 ),
            MinNmuonHits = cms.int32( 1 )
	)
	
	
	########## IO Algorthim:
	#Making Pixel Vertices:
	process.hltPixelTracks = cms.EDProducer( "PixelTrackProducer",
	    Filter = cms.InputTag("hltPixelTrackFilterByKinematics"),
	    passLabel = cms.string( "Pixel triplet primary tracks with vertex constraint" ),
	    Fitter = cms.InputTag("hltPixelTracksFitter"),
	    CleanerPSet = cms.string("hltPixelTracksCleaner"),
            SeedingHitSets = cms.InputTag("hltPixelTracksHitTriplets"),
	)
	
	process.hltPixelVertices = cms.EDProducer( "PixelVertexProducer",
	    WtAverage = cms.bool( True ),
	    Method2 = cms.bool( True ),
	    beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	    PVcomparer = cms.PSet(  refToPSet_ = cms.string( "HLTPSetPvClusterComparerForIT" ) ),
	    Verbosity = cms.int32( 0 ),
	    UseError = cms.bool( True ),
	    TrackCollection = cms.InputTag( "hltPixelTracks" ),
	    PtMin = cms.double( 1.0 ),
	    NTrkMin = cms.int32( 2 ),
	    ZOffset = cms.double( 5.0 ),
	    Finder = cms.string( "DivisiveVertexFinder" ),
	    ZSeparation = cms.double( 0.05 )
	)
	#/Making Pixel Vertices, could probably use the following PTP tho?
	
	#Start Iterative tracking:
	process.hltIterL3Iter0HighPtTkMuPixelTracks = cms.EDProducer( "PixelTrackProducer",
	    Filter = cms.InputTag("hltPixelTrackFilterByKinematics"),
	    passLabel = cms.string( "Pixel triplet primary tracks with vertex constraint" ),
	    Fitter = cms.InputTag("hltPixelTracksFitter"),
	    RegionFactoryPSet = IterMasterMuonTrackingRegionBuilder,
	    CleanerPSet = cms.string("hltPixelTracksCleaner"),
	    OrderedHitsFactoryPSet = cms.PSet(
	      ComponentName = cms.string( "StandardHitTripletGenerator" ),
	      GeneratorPSet = cms.PSet(
	        useBending = cms.bool( True ),
	        useFixedPreFiltering = cms.bool( False ),
	        maxElement = cms.uint32( 100000 ),
	        phiPreFiltering = cms.double( 0.3 ),
	        extraHitRPhitolerance = cms.double( 0.06 ),
	        useMultScattering = cms.bool( True ),
	        SeedComparitorPSet = cms.PSet(
	          ComponentName = cms.string( "LowPtClusterShapeSeedComparitor" ),
	          clusterShapeCacheSrc = cms.InputTag( "hltSiPixelClustersCache" )
	        ),
	        extraHitRZtolerance = cms.double( 0.06 ),
	        ComponentName = cms.string( "PixelTripletHLTGenerator" )
	      ),
	      SeedingLayers = cms.InputTag( "hltPixelLayerTriplets" )
	    )
	)
	process.hltIterL3Iter0HighPtTkMuPixelTracks.RegionFactoryPSet.ComponentName = cms.string( "MuonTrackingRegionBuilder" )
	process.hltIterL3Iter0HighPtTkMuPixelTracks.RegionFactoryPSet.DeltaR = cms.double( 0.2 )
	
	process.hltIterL3Iter0HighPtTkMuPixelSeedsFromPixelTracks = cms.EDProducer( "SeedGeneratorFromProtoTracksEDProducer",
	    useEventsWithNoVertex = cms.bool( True ),
	    originHalfLength = cms.double( 1.0E9 ),
	    useProtoTrackKinematics = cms.bool( False ),
	    usePV = cms.bool( False ),
	    SeedCreatorPSet = cms.PSet(  refToPSet_ = cms.string( "HLTSeedFromProtoTracks" ) ),
	    InputVertexCollection = cms.InputTag( "" ),
	    TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	    InputCollection = cms.InputTag( "hltIterL3Iter0HighPtTkMuPixelTracks" ),
	    originRadius = cms.double( 1.0E9 )
	)

	process.hltIterL3Iter0HighPtTkMuCkfTrackCandidates = cms.EDProducer( "CkfTrackCandidateMaker",
	    src = cms.InputTag( "hltIterL3Iter0HighPtTkMuPixelSeedsFromPixelTracks" ),
	    maxSeedsBeforeCleaning = cms.uint32( 1000 ),
	    SimpleMagneticField = cms.string( "ParabolicMf" ),
	    TransientInitialStateEstimatorParameters = cms.PSet(
	      propagatorAlongTISE = cms.string( "PropagatorWithMaterialParabolicMf" ),
	      numberMeasurementsForFit = cms.int32( 4 ),
	      propagatorOppositeTISE = cms.string( "PropagatorWithMaterialParabolicMfOpposite" )
	    ),
	    TrajectoryCleaner = cms.string( "hltESPTrajectoryCleanerBySharedHits" ),
	    MeasurementTrackerEvent = cms.InputTag( "hltSiStripClusters" ),
	    cleanTrajectoryAfterInOut = cms.bool( False ),
	    useHitsSplitting = cms.bool( False ),
	    RedundantSeedCleaner = cms.string( "CachingSeedCleanerBySharedInput" ),
	    doSeedingRegionRebuilding = cms.bool( False ),
	    maxNSeeds = cms.uint32( 100000 ),
	    TrajectoryBuilderPSet = cms.PSet(  refToPSet_ = cms.string( "HLTIter0HighPtTkMuPSetTrajectoryBuilderIT" ) ),
	    NavigationSchool = cms.string( "SimpleNavigationSchool" ),
	    TrajectoryBuilder = cms.string( "" ),
	    produceSeedStopReasons = cms.bool(False)
	)
	process.hltIterL3Iter0HighPtTkMuCtfWithMaterialTracks = cms.EDProducer( "TrackProducer",
	    src = cms.InputTag( "hltIterL3Iter0HighPtTkMuCkfTrackCandidates" ),
	    SimpleMagneticField = cms.string( "ParabolicMf" ),
	    clusterRemovalInfo = cms.InputTag( "" ),
	    beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	    MeasurementTrackerEvent = cms.InputTag( "hltSiStripClusters" ),
	    Fitter = cms.string( "hltESPFittingSmootherIT" ),
	    useHitsSplitting = cms.bool( False ),
	    MeasurementTracker = cms.string( "" ),
	    AlgorithmName = cms.string( "iter0" ),
	    alias = cms.untracked.string( "ctfWithMaterialTracks" ),
	    NavigationSchool = cms.string( "" ),
	    TrajectoryInEvent = cms.bool( True ),
	    TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	    GeometricInnerState = cms.bool( True ),
	    useSimpleMF = cms.bool( True ),
	    Propagator = cms.string( "hltESPRungeKuttaTrackerPropagator" )
	)
	process.hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity = cms.EDProducer( "AnalyticalTrackSelector",
	    max_d0 = cms.double( 100.0 ),
	    minNumber3DLayers = cms.uint32( 0 ),
	    max_lostHitFraction = cms.double( 1.0 ),
	    applyAbsCutsIfNoPV = cms.bool( False ),
	    qualityBit = cms.string( "highPurity" ),
	    minNumberLayers = cms.uint32( 3 ),
	    chi2n_par = cms.double( 0.7 ),
	    useVtxError = cms.bool( False ),
	    nSigmaZ = cms.double( 4.0 ),
	    dz_par2 = cms.vdouble( 0.4, 4.0 ),
	    applyAdaptedPVCuts = cms.bool( True ),
	    min_eta = cms.double( -9999.0 ),
	    dz_par1 = cms.vdouble( 0.35, 4.0 ),
	    copyTrajectories = cms.untracked.bool( True ),
	    vtxNumber = cms.int32( -1 ),
	    max_d0NoPV = cms.double( 100.0 ),
	    keepAllTracks = cms.bool( False ),
	    maxNumberLostLayers = cms.uint32( 1 ),
	    beamspot = cms.InputTag( "hltOnlineBeamSpot" ),
	    max_relpterr = cms.double( 9999.0 ),
	    copyExtras = cms.untracked.bool( True ),
	    max_z0NoPV = cms.double( 100.0 ),
	    vertexCut = cms.string( "tracksSize>=3" ),
	    max_z0 = cms.double( 100.0 ),
	    useVertices = cms.bool( False ),
	    min_nhits = cms.uint32( 0 ),
	    src = cms.InputTag( "hltIterL3Iter0HighPtTkMuCtfWithMaterialTracks" ),
	    max_minMissHitOutOrIn = cms.int32( 99 ),
	    chi2n_no1Dmod_par = cms.double( 9999.0 ),
	    vertices = cms.InputTag( "notUsed" ),
	    max_eta = cms.double( 9999.0 ),
	    d0_par2 = cms.vdouble( 0.4, 4.0 ),
	    d0_par1 = cms.vdouble( 0.3, 4.0 ),
	    res_par = cms.vdouble( 0.003, 0.001 ),
	    minHitsToBypassChecks = cms.uint32( 20 )
	)
	process.hltIterL3Iter2HighPtTkMuClustersRefRemoval = cms.EDProducer( "HLTTrackClusterRemoverIterL3",
	    doStrip = cms.bool( True ),
	    doStripChargeCheck = cms.bool( True ),
	    trajectories = cms.InputTag( "hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity" ),
	    oldClusterRemovalInfo = cms.InputTag( "" ),
	    stripClusters = cms.InputTag( "hltSiStripRawToClustersFacility" ),
	    pixelClusters = cms.InputTag( "hltSiPixelClusters" ),
	    Common = cms.PSet(
	      maxChi2 = cms.double( 16.0 ),
	      minGoodStripCharge = cms.double( 60.0 )
	    ),
	    doPixel = cms.bool( True )
	)
	process.hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent = cms.EDProducer( "MaskedMeasurementTrackerEventProducer",
	    clustersToSkip = cms.InputTag( "hltIterL3Iter2HighPtTkMuClustersRefRemoval" ),
	    OnDemand = cms.bool( False ),
	    src = cms.InputTag( "hltSiStripClusters" )
	)
	process.hltIterL3Iter2HighPtTkMuPixelLayerPairs = cms.EDProducer( "SeedingLayersEDProducer",
	    layerList = cms.vstring( 'BPix1+BPix2',
	      'BPix1+BPix3',
	      'BPix2+BPix3',
	      'BPix1+FPix1_pos',
	      'BPix1+FPix1_neg',
	      'BPix1+FPix2_pos',
	      'BPix1+FPix2_neg',
	      'BPix2+FPix1_pos',
	      'BPix2+FPix1_neg',
	      'BPix2+FPix2_pos',
	      'BPix2+FPix2_neg',
	      'FPix1_pos+FPix2_pos',
	      'FPix1_neg+FPix2_neg' ),
	    MTOB = cms.PSet(  ),
	    TEC = cms.PSet(  ),
	    MTID = cms.PSet(  ),
	    FPix = cms.PSet(
	      HitProducer = cms.string( "hltSiPixelRecHits" ),
	      hitErrorRZ = cms.double( 0.0036 ),
	      useErrorsFromParam = cms.bool( True ),
	      TTRHBuilder = cms.string( "hltESPTTRHBuilderPixelOnly" ),
	      skipClusters = cms.InputTag( "hltIterL3Iter2HighPtTkMuClustersRefRemoval" ),
	      hitErrorRPhi = cms.double( 0.0051 )
	    ),
	    MTEC = cms.PSet(  ),
	    MTIB = cms.PSet(  ),
	    TID = cms.PSet(  ),
	    TOB = cms.PSet(  ),
	    BPix = cms.PSet(
	      HitProducer = cms.string( "hltSiPixelRecHits" ),
	      hitErrorRZ = cms.double( 0.006 ),
	      useErrorsFromParam = cms.bool( True ),
	      TTRHBuilder = cms.string( "hltESPTTRHBuilderPixelOnly" ),
	      skipClusters = cms.InputTag( "hltIterL3Iter2HighPtTkMuClustersRefRemoval" ),
	      hitErrorRPhi = cms.double( 0.0027 )
	    ),
	    TIB = cms.PSet(  )
	)
	process.hltIterL3Iter2HighPtTkMuPixelSeeds = cms.EDProducer( "SeedGeneratorFromRegionHitsEDProducer",
	    RegionFactoryPSet = IterMasterMuonTrackingRegionBuilder,
	    SeedComparitorPSet = cms.PSet(
	      ComponentName = cms.string( "PixelClusterShapeSeedComparitor" ),
	      ClusterShapeHitFilterName = cms.string( "ClusterShapeHitFilter" ),
	      FilterPixelHits = cms.bool( True ), #Usually True 
	      FilterStripHits = cms.bool( False ),
	      FilterAtHelixStage = cms.bool( True ), #Usually True 
	      ClusterShapeCacheSrc = cms.InputTag( "hltSiPixelClustersCache" )
	    ),
	    ClusterCheckPSet = cms.PSet(
	      PixelClusterCollectionLabel = cms.InputTag( "hltSiPixelClusters" ),
	      MaxNumberOfCosmicClusters = cms.uint32( 50000 ),
	      doClusterCheck = cms.bool( False ),
	      ClusterCollectionLabel = cms.InputTag( "hltSiStripClusters" ),
	      MaxNumberOfPixelClusters = cms.uint32( 10000 )
	    ),
	    OrderedHitsFactoryPSet = cms.PSet(
	      maxElement = cms.uint32( 0 ),
	      ComponentName = cms.string( "StandardHitPairGenerator" ),
	      GeneratorPSet = cms.PSet(
	        maxElement = cms.uint32( 100000 ),
	        SeedComparitorPSet = cms.PSet(  ComponentName = cms.string( "none" ) )
	      ),
	      SeedingLayers = cms.InputTag( "hltIterL3Iter2HighPtTkMuPixelLayerPairs" )
	    ),
	    SeedCreatorPSet = cms.PSet(  refToPSet_ = cms.string( "HLTSeedFromConsecutiveHitsCreatorIT" ) ),
	    TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" )
	)
	process.hltIterL3Iter2HighPtTkMuPixelSeeds.RegionFactoryPSet.ComponentName = cms.string( "MuonTrackingRegionBuilder" )
	process.hltIterL3Iter2HighPtTkMuPixelSeeds.RegionFactoryPSet.DeltaR = cms.double( 0.025 )
	
	process.hltIterL3Iter2HighPtTkMuCkfTrackCandidates = cms.EDProducer( "CkfTrackCandidateMaker",
	    src = cms.InputTag( "hltIterL3Iter2HighPtTkMuPixelSeeds" ),
	    maxSeedsBeforeCleaning = cms.uint32( 1000 ),
	    SimpleMagneticField = cms.string( "ParabolicMf" ),
	    TransientInitialStateEstimatorParameters = cms.PSet(
	      propagatorAlongTISE = cms.string( "PropagatorWithMaterialParabolicMf" ),
	      numberMeasurementsForFit = cms.int32( 4 ),
	      propagatorOppositeTISE = cms.string( "PropagatorWithMaterialParabolicMfOpposite" )
	    ),
	    TrajectoryCleaner = cms.string( "hltESPTrajectoryCleanerBySharedHits" ),
	    MeasurementTrackerEvent = cms.InputTag( "hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent" ),
	    cleanTrajectoryAfterInOut = cms.bool( False ),
	    useHitsSplitting = cms.bool( False ),
	    RedundantSeedCleaner = cms.string( "CachingSeedCleanerBySharedInput" ),
	    doSeedingRegionRebuilding = cms.bool( False ),
	    maxNSeeds = cms.uint32( 100000 ),
	    TrajectoryBuilderPSet = cms.PSet(  refToPSet_ = cms.string( "HLTIter2HighPtTkMuPSetTrajectoryBuilderIT" ) ),
	    NavigationSchool = cms.string( "SimpleNavigationSchool" ),
	    TrajectoryBuilder = cms.string( "" ),
	    produceSeedStopReasons = cms.bool(False)
	)
	process.hltIterL3Iter2HighPtTkMuCtfWithMaterialTracks = cms.EDProducer( "TrackProducer",
	    src = cms.InputTag( "hltIterL3Iter2HighPtTkMuCkfTrackCandidates" ),
	    SimpleMagneticField = cms.string( "ParabolicMf" ),
	    clusterRemovalInfo = cms.InputTag( "" ),
	    beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	    MeasurementTrackerEvent = cms.InputTag( "hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent" ),
	    Fitter = cms.string( "hltESPFittingSmootherIT" ),
	    useHitsSplitting = cms.bool( False ),
	    MeasurementTracker = cms.string( "" ),
	    AlgorithmName = cms.string( "iter2" ),
	    alias = cms.untracked.string( "ctfWithMaterialTracks" ),
	    NavigationSchool = cms.string( "" ),
	    TrajectoryInEvent = cms.bool( True ),
	    TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	    GeometricInnerState = cms.bool( True ),
	    useSimpleMF = cms.bool( True ),
	    Propagator = cms.string( "hltESPRungeKuttaTrackerPropagator" )
	)
	process.hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity = cms.EDProducer( "AnalyticalTrackSelector",
	    max_d0 = cms.double( 100.0 ),
	    minNumber3DLayers = cms.uint32( 0 ),
	    max_lostHitFraction = cms.double( 1.0 ),
	    applyAbsCutsIfNoPV = cms.bool( False ),
	    qualityBit = cms.string( "highPurity" ),
	    minNumberLayers = cms.uint32( 3 ),
	    chi2n_par = cms.double( 0.7 ),
	    useVtxError = cms.bool( False ),
	    nSigmaZ = cms.double( 4.0 ),
	    dz_par2 = cms.vdouble( 0.4, 4.0 ),
	    applyAdaptedPVCuts = cms.bool( True ),
	    min_eta = cms.double( -9999.0 ),
	    dz_par1 = cms.vdouble( 0.35, 4.0 ),
	    copyTrajectories = cms.untracked.bool( True ),
	    vtxNumber = cms.int32( -1 ),
	    max_d0NoPV = cms.double( 100.0 ),
	    keepAllTracks = cms.bool( False ),
	    maxNumberLostLayers = cms.uint32( 1 ),
	    beamspot = cms.InputTag( "hltOnlineBeamSpot" ),
	    max_relpterr = cms.double( 9999.0 ),
	    copyExtras = cms.untracked.bool( True ),
	    max_z0NoPV = cms.double( 100.0 ),
	    vertexCut = cms.string( "tracksSize>=3" ),
	    max_z0 = cms.double( 100.0 ),
	    useVertices = cms.bool( False ),
	    min_nhits = cms.uint32( 0 ),
	    src = cms.InputTag( "hltIterL3Iter2HighPtTkMuCtfWithMaterialTracks" ),
	    max_minMissHitOutOrIn = cms.int32( 99 ),
	    chi2n_no1Dmod_par = cms.double( 9999.0 ),
	    vertices = cms.InputTag( "notUsed" ),
	    max_eta = cms.double( 9999.0 ),
	    d0_par2 = cms.vdouble( 0.4, 4.0 ),
	    d0_par1 = cms.vdouble( 0.3, 4.0 ),
	    res_par = cms.vdouble( 0.003, 0.001 ),
	    minHitsToBypassChecks = cms.uint32( 20 )
	)
	if not hasattr(process, "hltTrackAlgoPriorityOrder"):
	    from RecoTracker.FinalTrackSelectors.trackAlgoPriorityOrder_cfi import trackAlgoPriorityOrder
	    process.hltTrackAlgoPriorityOrder = trackAlgoPriorityOrder.clone(
	        ComponentName = "hltTrackAlgoPriorityOrder",
	        algoOrder = [] # HLT iteration order is correct in the hard-coded default
	    )
	process.hltIterL3Iter2HighPtTkMuMerged = cms.EDProducer( "TrackListMerger",
	    ShareFrac = cms.double( 0.19 ),
	    writeOnlyTrkQuals = cms.bool( False ),
	    MinPT = cms.double( 0.05 ),
	    allowFirstHitShare = cms.bool( True ),
	    copyExtras = cms.untracked.bool( True ),
	    Epsilon = cms.double( -0.001 ),
	    selectedTrackQuals = cms.VInputTag( 'hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity','hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity' ),
	    indivShareFrac = cms.vdouble( 1.0, 1.0 ),
	    MaxNormalizedChisq = cms.double( 1000.0 ),
	    copyMVA = cms.bool( False ),
	    FoundHitBonus = cms.double( 5.0 ),
	    setsToMerge = cms.VPSet( 
	      cms.PSet(  pQual = cms.bool( False ),
	        tLists = cms.vint32( 0, 1 )
	      )
	    ),
	    MinFound = cms.int32( 3 ),
	    hasSelector = cms.vint32( 0, 0 ),
	    TrackProducers = cms.VInputTag( 'hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity','hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity' ),
	    LostHitPenalty = cms.double( 20.0 ),
	    newQuality = cms.string( "confirmed" ),
	    trackAlgoPriorityOrder = cms.string("hltTrackAlgoPriorityOrder"),
	)

	#Iterative tracking finished
	
	# L3MuonProducer from iterative tracking:
	process.hltL3MuonsIterL3IO = cms.EDProducer( "L3MuonProducer",
	    ServiceParameters = cms.PSet(
	      Propagators = cms.untracked.vstring( 'hltESPSmartPropagatorAny',
	        'SteppingHelixPropagatorAny',
	        'hltESPSmartPropagator',
	        'hltESPSteppingHelixPropagatorOpposite' ),
	      RPCLayers = cms.bool( True ),
	      UseMuonNavigation = cms.untracked.bool( True )
	    ),
	    L3TrajBuilderParameters = cms.PSet(
	      ScaleTECyFactor = cms.double( -1.0 ),
	      GlbRefitterParameters = cms.PSet(
	        TrackerSkipSection = cms.int32( -1 ),
	        DoPredictionsOnly = cms.bool( False ),
	        PropDirForCosmics = cms.bool( False ),
	        HitThreshold = cms.int32( 1 ),
	        RefitFlag = cms.bool( True ),           #Usually true
	        MuonHitsOption = cms.int32( 1 ),
	        Chi2CutRPC = cms.double( 1.0 ),
	        Fitter = cms.string( "hltESPL3MuKFTrajectoryFitter" ),
	        DTRecSegmentLabel = cms.InputTag( "hltDt4DSegments" ),
	        TrackerRecHitBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	        MuonRecHitBuilder = cms.string( "hltESPMuonTransientTrackingRecHitBuilder" ),
	        RefitDirection = cms.string( "insideOut" ),
	        CSCRecSegmentLabel = cms.InputTag( "hltCscSegments" ),
	        Chi2CutCSC = cms.double( 150.0 ),
	        Chi2CutDT = cms.double( 10.0 ),
	        RefitRPCHits = cms.bool( True ),
	        SkipStation = cms.int32( -1 ),
	        Propagator = cms.string( "hltESPSmartPropagatorAny" ),
	        TrackerSkipSystem = cms.int32( -1 ),
	        DYTthrs = cms.vint32( 30, 15 )
	      ),
	      ScaleTECxFactor = cms.double( -1.0 ),
	      TrackerRecHitBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	      MuonRecHitBuilder = cms.string( "hltESPMuonTransientTrackingRecHitBuilder" ),
	      MuonTrackingRegionBuilder = cms.PSet(
	        Rescale_eta = cms.double( 3.0 ),
	        Rescale_phi = cms.double( 3.0 ),
	        Rescale_Dz = cms.double( 4.0 ),                 #Normally 4
	        EscapePt = cms.double( 3.0 ),                   #Normally 1.5 but it should be at least 8 for us
	        EtaR_UpperLimit_Par1 = cms.double( 0.25 ),      #Normally 0.25
	        EtaR_UpperLimit_Par2 = cms.double( 0.15 ),      #Normally 0.15
	        PhiR_UpperLimit_Par1 = cms.double( 0.6 ),       #Normally 0.6
	        PhiR_UpperLimit_Par2 = cms.double( 0.2 ),       #Normally 0.2
	        UseVertex = cms.bool( False ),                  #Normally False
	        Pt_fixed = cms.bool( False ),                   #Normally True
	        Z_fixed = cms.bool( False ),    #True for IOH
	        Phi_fixed = cms.bool( True ),   #False for IOH
	        Eta_fixed = cms.bool( True ),   #False for IOH
	        Pt_min = cms.double( 3.0 ),     #Is 0.9 for Tau; normally 8 here
	        Phi_min = cms.double( 0.1 ),
	        Eta_min = cms.double( 0.1 ),
	        DeltaZ = cms.double( 24.2 ),    #default for tau: 24.2, for old IOH: 15.9
	        DeltaR = cms.double( 0.025 ),   #This changes for different iterations. for old IOH: ?
	        DeltaEta = cms.double( 0.04 ),  #default 0.15
	        DeltaPhi = cms.double( 0.15 ),   #default 0.2
	        maxRegions = cms.int32( 2 ),
	        precise = cms.bool( True ),
	        OnDemand = cms.int32( -1 ),
	        MeasurementTrackerName = cms.InputTag( "hltESPMeasurementTracker" ),
	        beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	        vertexCollection = cms.InputTag( "pixelVertices" ), #Warning: I am not generating colleciton. Vertex is off anyway
	        input = cms.InputTag( 'hltL2Muons','UpdatedAtVtx' )
	      ),
#	      MuonTrackingRegionBuilder = MasterMuonTrackingRegionBuilder,  #Using the master Muon ROI params - Although it is not used
	      RefitRPCHits = cms.bool( True ),
	      PCut = cms.double( 2.5 ),
	      TrackTransformer = cms.PSet(
	        DoPredictionsOnly = cms.bool( False ),
	        Fitter = cms.string( "hltESPL3MuKFTrajectoryFitter" ),
	        TrackerRecHitBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
	        Smoother = cms.string( "hltESPKFTrajectorySmootherForMuonTrackLoader" ),
	        MuonRecHitBuilder = cms.string( "hltESPMuonTransientTrackingRecHitBuilder" ),
	        RefitDirection = cms.string( "insideOut" ),
	        RefitRPCHits = cms.bool( True ),
	        Propagator = cms.string( "hltESPSmartPropagatorAny" )
	      ),
	      GlobalMuonTrackMatcher = cms.PSet(
	        Pt_threshold1 = cms.double( 0.0 ),
	        DeltaDCut_3 = cms.double( 15.0 ),
	        MinP = cms.double( 2.5 ),
	        MinPt = cms.double( 1.0 ),
	        Chi2Cut_1 = cms.double( 50.0 ),
	        Pt_threshold2 = cms.double( 9.99999999E8 ),
	        LocChi2Cut = cms.double( 0.001 ),
	        Eta_threshold = cms.double( 1.2 ),
	        Quality_3 = cms.double( 7.0 ),
	        Quality_2 = cms.double( 15.0 ),
	        Chi2Cut_2 = cms.double( 50.0 ),
	        Chi2Cut_3 = cms.double( 200.0 ),
	        DeltaDCut_1 = cms.double( 40.0 ),
	        DeltaRCut_2 = cms.double( 0.2 ),
	        DeltaRCut_3 = cms.double( 1.0 ),
	        DeltaDCut_2 = cms.double( 10.0 ),
	        DeltaRCut_1 = cms.double( 0.1 ),
	        Propagator = cms.string( "hltESPSmartPropagator" ),
	        Quality_1 = cms.double( 20.0 )
	      ),
	      PtCut = cms.double( 1.0 ),
	      TrackerPropagator = cms.string( "SteppingHelixPropagatorAny" ),
	      tkTrajLabel = cms.InputTag( "hltIterL3Iter2HighPtTkMuMerged" ),      #Feed tracks from iterations into L3MTB
	      tkTrajBeamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	      tkTrajMaxChi2 = cms.double( 9999.0 ),
	      tkTrajMaxDXYBeamSpot = cms.double( 9999.0 ),      #same cuts as old algos
	      tkTrajVertex = cms.InputTag( "pixelVertices" ),
	      tkTrajUseVertex = cms.bool( False ),
	      matchToSeeds = cms.bool( True )
	    ),
	    TrackLoaderParameters = cms.PSet(
	      PutTkTrackIntoEvent = cms.untracked.bool( False ),
	      beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
	      SmoothTkTrack = cms.untracked.bool( False ),
	      MuonSeededTracksInstance = cms.untracked.string( "L2Seeded" ),
	      Smoother = cms.string( "hltESPKFTrajectorySmootherForMuonTrackLoader" ),
	      MuonUpdatorAtVertexParameters = cms.PSet(
	        MaxChi2 = cms.double( 1000000.0 ),
	        Propagator = cms.string( "hltESPSteppingHelixPropagatorOpposite" ),
	        BeamSpotPositionErrors = cms.vdouble( 0.1, 0.1, 5.3 )
	      ),
	      VertexConstraint = cms.bool( False ),
	      DoSmoothing = cms.bool( False )   #Usually true
	    ),
	    MuonCollectionLabel = cms.InputTag( 'hltL2Muons','UpdatedAtVtx' )
	)
	
	process.hltIterL3MuonsLinksCombination = cms.EDProducer( "L3TrackLinksCombiner",
	    labels = cms.VInputTag( 'hltL3MuonsIterL3OI','hltL3MuonsIterL3IO' )
	)
	process.hltIterL3Muons = cms.EDProducer( "L3TrackCombiner",
	    labels = cms.VInputTag( 'hltL3MuonsIterL3OI','hltL3MuonsIterL3IO' )
	)
	process.hltIterL3MuonCandidates = cms.EDProducer( "L3MuonCandidateProducer",
	    InputLinksObjects = cms.InputTag( "hltIterL3MuonsLinksCombination" ),
	    InputObjects = cms.InputTag( "hltIterL3Muons" ),
	    MuonPtOption = cms.string( "Tracker" )
	)

###	FOR IO Only:
#	process.hltIterL3MuonCandidates.InputLinksObjects = cms.InputTag( "hltL3MuonsIterL3IO" )
#	process.hltIterL3MuonCandidates.InputObjects = cms.InputTag( "hltL3MuonsIterL3IO" )
#        process.hltL3fL1sMu16orMu25L1f0L2f16QL3Filtered50Q.InputLinks = cms.InputTag( "hltL3MuonsIterL3IO" )

###    FOR OI Only:
#	process.hltIterL3MuonCandidates.InputLinksObjects = cms.InputTag( "hltL3MuonsIterL3OI" )
#	process.hltIterL3MuonCandidates.InputObjects = cms.InputTag( "hltL3MuonsIterL3OI" )
#        process.hltL3fL1sMu16orMu25L1f0L2f16QL3Filtered50Q.InputLinks = cms.InputTag( "hltL3MuonsIterL3OI" )
	#############################################################
	
	####################### NEW Combo:
	process.HLTIterL3IterativeTrackingHighPtTkMuIteration0 = cms.Sequence(
	 process.hltPixelLayerTriplets +
         process.hltPixelTracksTrackingRegions +
         process.hltPixelTracksHitDoublets +
         process.hltPixelTracksHitTriplets +
         process.hltPixelTracksFitter +
	 process.hltPixelTrackFilterByKinematics +
	 process.hltIterL3Iter0HighPtTkMuPixelTracks +
	 process.hltIterL3Iter0HighPtTkMuPixelSeedsFromPixelTracks +
	 process.hltIterL3Iter0HighPtTkMuCkfTrackCandidates +
	 process.hltIterL3Iter0HighPtTkMuCtfWithMaterialTracks +
	 process.hltIterL3Iter0HighPtTkMuTrackSelectionHighPurity
	)
	process.HLTIterL3IterativeTrackingHighPtTkMuIteration2 = cms.Sequence(
	 process.hltIterL3Iter2HighPtTkMuClustersRefRemoval +
	 process.hltIterL3Iter2HighPtTkMuMaskedMeasurementTrackerEvent +
	 process.hltIterL3Iter2HighPtTkMuPixelLayerPairs +
	 process.hltIterL3Iter2HighPtTkMuPixelSeeds +
	 process.hltIterL3Iter2HighPtTkMuCkfTrackCandidates +
	 process.hltIterL3Iter2HighPtTkMuCtfWithMaterialTracks +
	 process.hltIterL3Iter2HighPtTkMuTrackSelectionHighPurity
	)
	process.HLTIterL3IterativeTrackingHighPtTkMu = cms.Sequence(
	 process.HLTIterL3IterativeTrackingHighPtTkMuIteration0 +
	 process.HLTIterL3IterativeTrackingHighPtTkMuIteration2 +
	 process.hltIterL3Iter2HighPtTkMuMerged
	)
	
	process.HLTL3muonTkCandidateSequence = cms.Sequence(
	 process.HLTDoLocalPixelSequence + process.HLTDoLocalStripSequence +
	 process.HLTRecopixelvertexingSequence +
	 process.hltIterL3OISeedsFromL2Muons +	#OIStart#off for IO
	 process.hltIterL3OITrackCandidates +		#off for IO
	 process.hltIterL3MuonSeededTracksOutIn +		#off for IO
	 process.hltL3MuonsIterL3OI +			#off for IO
	 process.hltL2SelectorForL3IO  + #OIEnd		#off for IO
	 process.HLTIterL3IterativeTrackingHighPtTkMu +	#off for OI
	 process.hltL3MuonsIterL3IO 				#off for OI
	)
	
	process.HLTL3muonrecoNocandSequence = cms.Sequence(
	 process.HLTL3muonTkCandidateSequence
	 + process.hltIterL3MuonsLinksCombination	#off for IO or OI only
	 + process.hltIterL3Muons			#off for IO or OI only
	)
	process.HLTL3muonrecoSequence = cms.Sequence(
	 process.HLTL3muonrecoNocandSequence
	 + process.hltIterL3MuonCandidates
	)

	return process