CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/FastSimulation/Tracking/python/cutsGS_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 cutsGS = cms.EDFilter("RecoTrackSelector",
00004     src = cms.InputTag("ctfWithMaterialTracks"),
00005     maxChi2 = cms.double(10000.0), ##not used in tdr
00006 
00007     tip = cms.double(3.5),
00008     minRapidity = cms.double(-2.5),
00009     lip = cms.double(30.0),
00010     ptMin = cms.double(0.8),
00011     maxRapidity = cms.double(2.5),
00012     minHit = cms.int32(8)
00013 )
00014 
00015