CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cutsGS_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cutsGS = cms.EDFilter("RecoTrackSelector",
4  src = cms.InputTag("ctfWithMaterialTracks"),
5  maxChi2 = cms.double(10000.0), ##not used in tdr
6 
7  tip = cms.double(3.5),
8  minRapidity = cms.double(-2.5),
9  lip = cms.double(30.0),
10  ptMin = cms.double(0.8),
11  maxRapidity = cms.double(2.5),
12  minHit = cms.int32(8)
13 )
14 
15 
16 
17 
18