CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTFastRecoForTau_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 hltRegionalPixelTracks = FastSimulation.Tracking.HLTPixelTracksProducer_cfi.hltPixelTracks.clone()
6 hltRegionalPixelTracks.FilterPSet.ptMin = 0.1
7 hltRegionalPixelTracks.RegionFactoryPSet.ComponentName = "L3MumuTrackingRegion"
8 hltRegionalPixelTracks.RegionFactoryPSet.RegionPSet = cms.PSet(
9  originRadius = cms.double( 1.0 ),
10  ptMin = cms.double( 0.5 ),
11  originHalfLength = cms.double( 15.0 ),
12  vertexZDefault = cms.double( 0.0 ),
13  vertexSrc = cms.InputTag( "hltDisplacedmumuVtxProducerDoubleMuTau2Mu" ),
14  deltaEtaRegion = cms.double( 0.5 ),
15  deltaPhiRegion = cms.double( 0.5 ),
16  TrkSrc = cms.InputTag( "hltL3Muons" ),
17  UseVtxTks = cms.bool( False ),
18  howToUseMeasurementTracker = cms.string("Never"),
19 )
20 
21 hltPixelTracksReg = FastSimulation.Tracking.HLTPixelTracksProducer_cfi.hltPixelTracks.clone()
22 hltPixelTracksReg.FilterPSet.ptMin = 0.1
23 hltPixelTracksReg.FilterPSet.chi2 = 50.
24 hltPixelTracksReg.RegionFactoryPSet.ComponentName = "CandidateSeededTrackingRegionsProducer"
25 hltPixelTracksReg.RegionFactoryPSet.RegionPSet = cms.PSet(
26  precise = cms.bool( True ),
27  originRadius = cms.double( 0.2 ),
28  ptMin = cms.double( 0.9 ),
29  beamSpot = cms.InputTag( "hltOnlineBeamSpot" ),
30  mode = cms.string( "BeamSpotSigma" ),
31  input = cms.InputTag( "hltL2TausForPixelIsolation" ),
32  maxNRegions = cms.int32( 10 ),
33  vertexCollection = cms.InputTag( "" ),
34  maxNVertices = cms.int32( 1 ),
35  zErrorBeamSpot = cms.double( 24.2 ),
36  deltaEta = cms.double( 0.5 ),
37  deltaPhi = cms.double( 0.5 ),
38  nSigmaZVertex = cms.double( 3.0 ),
39  zErrorVertex = cms.double( 0.2 ),
40  nSigmaZBeamSpot = cms.double( 4.0 ),
41  whereToUseMeasurementTracker = cms.string("Never"),
42 )
43 
44 
45 
46 # CKFTrackCandidateMaker
48 
49 hltTau3MuCkfTrackCandidates = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone()
50 hltTau3MuCkfTrackCandidates.src = cms.InputTag("hltTau3MuPixelSeedsFromPixelTracks")
51 hltTau3MuCkfTrackCandidates.SplitHits = False
52 
53 
54 
55 # CTF track fit with material
57 
58 hltTau3MuCtfWithMaterialTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone()
59 hltTau3MuCtfWithMaterialTracks.src = 'hltTau3MuCkfTrackCandidates'
60 hltTau3MuCtfWithMaterialTracks.TTRHBuilder = 'WithoutRefit'
61 hltTau3MuCtfWithMaterialTracks.Fitter = 'KFFittingSmoother'
62 hltTau3MuCtfWithMaterialTracks.Propagator = 'PropagatorWithMaterial'
63