ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Jeng/PVStudy/python/TrackSplitterProducer_cfi.py
Revision: 1.2
Committed: Sun Nov 8 02:57:48 2009 UTC (15 years, 6 months ago) by yygao
Content type: text/x-python
Branch: MAIN
CVS Tags: CMSSW_3_1_2_PileUp_v1
Changes since 1.1: +4 -1 lines
Log Message:
Update cuts in track dz

File Contents

# User Rev Content
1 yygao 1.1 import FWCore.ParameterSet.Config as cms
2     from TrackingTools.TransientTrack.TransientTrackBuilder_cfi import *
3    
4     TrackSplitterProducer = cms.EDProducer("TrackSplitterProducer",
5     TrackCollectionTag = cms.InputTag("generalTracks"),
6     Debug = cms.bool(False),
7     beamSpot = cms.InputTag("offlineBeamSpot"),
8     TkFilterParameters = cms.PSet(maxNormalizedChi2 = cms.double(5.0),
9     minSiliconHits = cms.int32(7), ## hits > 7
10     maxD0Significance = cms.double(5.0), ## keep most primary tracks
11     minPt = cms.double(0.0), ## better for softish events
12     minPixelHits = cms.int32(2) ## hits > 2
13 yygao 1.2 ),
14     pixelVertexCollectionTag = cms.InputTag("pixelVertices"),
15     trkFilterZcut = cms.double(10000.0)
16     #track dz must be within trkFilterZcut*dzError from the leading pixel pvtx
17 yygao 1.1 )
18