CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoTracker/TkTrackingRegions/python/GlobalTrackingRegion_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # deprecated.  Changing over to the block
00004 # NO: must be completely removed, as the CFI is included at top level
00005 # otherwise we get duplicate definitions
00006 # PSet RegionPSet = {
00007 #   double ptMin = 0.9
00008 #   double originRadius = 0.2
00009 #   double originHalfLength = 15.9
00010 #   double originXPos = 0.0
00011 #   double originYPos = 0.0
00012 #   double originZPos = 0.0
00013 #   bool precise = true
00014 # }
00015 RegionPSetBlock = cms.PSet(
00016     RegionPSet = cms.PSet(
00017         precise = cms.bool(True),
00018         originHalfLength = cms.double(21.2),
00019         originRadius = cms.double(0.2),
00020         originYPos = cms.double(0.0),
00021         ptMin = cms.double(0.9),
00022         originXPos = cms.double(0.0),
00023         originZPos = cms.double(0.0)
00024     )
00025 )
00026