Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:15

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