Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-11-06 23:38:04

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hiTrackingRegionFromClusterVtx = cms.EDProducer('HITrackingRegionForPrimaryVtxEDProducer',
0004   RegionPSet = cms.PSet(
0005     ptMin = cms.double(0.7),
0006     doVariablePtMin = cms.bool(True),
0007     originRadius = cms.double(0.2),
0008     nSigmaZ = cms.double(3),
0009     beamSpot = cms.InputTag('offlineBeamSpot'),
0010     precise = cms.bool(True),
0011     useMultipleScattering = cms.bool(False),
0012     useFakeVertices = cms.bool(False),
0013     siPixelRecHits = cms.InputTag('siPixelRecHits'),
0014     directionXCoord = cms.double(1),
0015     directionYCoord = cms.double(1),
0016     directionZCoord = cms.double(0),
0017     useFoundVertices = cms.bool(True),
0018     VertexCollection = cms.InputTag('hiPixelClusterVertex'),
0019     useFixedError = cms.bool(True),
0020     fixedError = cms.double(3),
0021     sigmaZVertex = cms.double(3)
0022   ),
0023   mightGet = cms.optional.untracked.vstring
0024 )