CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalTrackingRegionWithVertices_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from Configuration.StandardSequences.Eras import eras
3 
4 RegionPSetWithVerticesBlock = cms.PSet(
5  RegionPSet = cms.PSet(
6  precise = cms.bool(True),
7  useMultipleScattering = cms.bool(False),
8  beamSpot = cms.InputTag("offlineBeamSpot"),
9  useFixedError = cms.bool(True),
10  originRadius = cms.double(0.2),
11  sigmaZVertex = cms.double(3.0),
12  fixedError = cms.double(0.2),
13  VertexCollection = cms.InputTag("firstStepPrimaryVertices"),
14  ptMin = cms.double(0.9),
15  useFoundVertices = cms.bool(True),
16  useFakeVertices = cms.bool(False),
17  nSigmaZ = cms.double(4.0)
18  )
19 )
20 eras.trackingLowPU.toModify(RegionPSetWithVerticesBlock,
21  RegionPSet = dict(VertexCollection = "pixelVertices")
22 )