CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  quality = cms.vstring('loose'),
12  algorithm = cms.vstring(),
13  originalAlgorithm = cms.vstring(),
14  algorithmMaskContains = cms.vstring(),
15  minLayer = cms.int32(3),
16  min3DLayer = cms.int32(0),
17  minHit = cms.int32(0),
18  minPixelHit = cms.int32(0),
19  beamSpot = cms.InputTag("offlineBeamSpot"),
20  usePV = cms.bool(False),
21  vertexTag = cms.InputTag('offlinePrimaryVertices')
22 )