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 # moving to block. Will delete this one
4 # when transition is done
5 # NO: must be completely removed, as the CFI is included at top level
6 # otherwise we get duplicate definitions
7 # PSet RegionPSet = {
8 # double ptMin = 0.9
9 # double originRadius = 0.2
10 # double nSigmaZ = 3.0
11 # InputTag beamSpot = "offlineBeamSpot"
12 # bool precise = true
13 #
14 # bool useFoundVertices = true
15 # string VertexCollection = "pixelVertices"
16 #
17 # double sigmaZVertex = 3.0
18 # bool useFixedError = true
19 # double fixedError = 0.2
20 # }
21 RegionPSetWithVerticesBlock = cms.PSet(
22  RegionPSet = cms.PSet(
23  precise = cms.bool(True),
24  beamSpot = cms.InputTag("offlineBeamSpot"),
25  useFixedError = cms.bool(True),
26  originRadius = cms.double(0.2),
27  sigmaZVertex = cms.double(3.0),
28  fixedError = cms.double(0.2),
29  VertexCollection = cms.InputTag("firstStepPrimaryVertices"),
30  ptMin = cms.double(0.9),
31  useFoundVertices = cms.bool(True),
32  useFakeVertices = cms.bool(False),
33  nSigmaZ = cms.double(4.0)
34  )
35 )
36