CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoTracker/TkTrackingRegions/python/GlobalTrackingRegionWithVertices_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # moving to block.  Will delete this one
00004 # when transition is done
00005 # NO: must be completely removed, as the CFI is included at top level
00006 #     otherwise we get duplicate definitions
00007 # PSet RegionPSet = {
00008 #   double ptMin = 0.9
00009 #   double originRadius = 0.2
00010 #   double nSigmaZ = 3.0
00011 #   InputTag beamSpot = "offlineBeamSpot"
00012 #   bool precise = true
00013 # 
00014 #   bool useFoundVertices =  true
00015 #   string VertexCollection = "pixelVertices"
00016 # 
00017 #   double sigmaZVertex = 3.0
00018 #   bool useFixedError = true
00019 #   double fixedError = 0.2
00020 # }
00021 RegionPSetWithVerticesBlock = cms.PSet(
00022     RegionPSet = cms.PSet(
00023         precise = cms.bool(True),
00024         beamSpot = cms.InputTag("offlineBeamSpot"),
00025         useFixedError = cms.bool(True),
00026         originRadius = cms.double(0.2),
00027         sigmaZVertex = cms.double(3.0),
00028         fixedError = cms.double(0.2),
00029         VertexCollection = cms.InputTag("pixelVertices"),
00030         ptMin = cms.double(0.9),
00031         useFoundVertices = cms.bool(True),
00032         nSigmaZ = cms.double(4.0)
00033     )
00034 )
00035