CMS 3D CMS Logo

recoTrackSelectorPSet_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 recoTrackSelectorPSet = cms.PSet(
4  src = cms.InputTag("generalTracks"),
5  maxChi2 = cms.double(10000.0),
6  tip = cms.double(120.0),
7  minRapidity = cms.double(-5.0),
8  lip = cms.double(300.0),
9  ptMin = cms.double(0.1),
10  maxRapidity = cms.double(5.0),
11  minPhi = cms.double(-3.2),
12  maxPhi = cms.double(3.2),
13  quality = cms.vstring('loose'),
14  algorithm = cms.vstring(),
15  originalAlgorithm = cms.vstring(),
16  algorithmMaskContains = cms.vstring(),
17  minLayer = cms.int32(3),
18  min3DLayer = cms.int32(0),
19  minHit = cms.int32(0),
20  minPixelHit = cms.int32(0),
21  beamSpot = cms.InputTag("offlineBeamSpot"),
22  usePV = cms.bool(False),
23  vertexTag = cms.InputTag('offlinePrimaryVertices')
24 )