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 
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  nSigmaZ = cms.double(4.0)
17  )
18 )
19