CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalTrackingRegion_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # deprecated. Changing over to the block
4 # NO: must be completely removed, as the CFI is included at top level
5 # otherwise we get duplicate definitions
6 # PSet RegionPSet = {
7 # double ptMin = 0.9
8 # double originRadius = 0.2
9 # double originHalfLength = 15.9
10 # double originXPos = 0.0
11 # double originYPos = 0.0
12 # double originZPos = 0.0
13 # bool precise = true
14 # }
15 RegionPSetBlock = cms.PSet(
16  RegionPSet = cms.PSet(
17  precise = cms.bool(True),
18  originHalfLength = cms.double(21.2),
19  originRadius = cms.double(0.2),
20  originYPos = cms.double(0.0),
21  ptMin = cms.double(0.9),
22  originXPos = cms.double(0.0),
23  originZPos = cms.double(0.0)
24  )
25 )
26