CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
trajectoryFilterForConversions_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TrajectoryFilterForConversions = cms.PSet(
4  chargeSignificance = cms.double(-1.0),
5  minPt = cms.double(0.9),
6  minHitsMinPt = cms.int32(-1),
7  ComponentType = cms.string('CkfBaseTrajectoryFilter'),
8  maxLostHits = cms.int32(1),
9  maxNumberOfHits = cms.int32(-1),
10  maxConsecLostHits = cms.int32(1),
11  nSigmaMinPt = cms.double(5.0),
12  minimumNumberOfHits = cms.int32(3)
13 )
14