CMS 3D CMS Logo

GlobalTrackingRegionWithVertices_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 RegionPSetWithVerticesBlock = cms.PSet(
4  RegionPSet = cms.PSet(
5  precise = cms.bool(True),
6  useMultipleScattering = cms.bool(False),
7  beamSpot = cms.InputTag("offlineBeamSpot"),
8  useFixedError = cms.bool(True),
9  originRadius = cms.double(0.2),
10  sigmaZVertex = cms.double(3.0),
11  fixedError = cms.double(0.2),
12  VertexCollection = cms.InputTag("firstStepPrimaryVertices"),
13  ptMin = cms.double(0.9),
14  useFoundVertices = cms.bool(True),
15  useFakeVertices = cms.bool(False),
16  maxNVertices = cms.int32(-1),
17  nSigmaZ = cms.double(4.0)
18  )
19 )
20 from Configuration.Eras.Modifier_trackingLowPU_cff import trackingLowPU
21 trackingLowPU.toModify(RegionPSetWithVerticesBlock,
22  RegionPSet = dict(VertexCollection = "pixelVertices")
23 )