ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/TrackAnalysis/python/findableSimTracks_cfi.py
Revision: 1.1
Committed: Fri May 29 13:56:31 2009 UTC (15 years, 11 months ago) by edwenger
Content type: text/x-python
Branch: MAIN
Branch point for: BRANCH22X
Log Message:
new tracking particle selector

File Contents

# User Rev Content
1 edwenger 1.1 import FWCore.ParameterSet.Config as cms
2    
3     findableSimTracks = cms.EDFilter("HitPixelLayersTPSelection",
4     src = cms.InputTag("mergedtruth","MergedTrackTruth"),
5     tripletSeedOnly = cms.bool(True),
6     chargedOnly = cms.bool(True),
7     signalOnly = cms.bool(False),
8     ptMin = cms.double(2.0),
9     minHit = cms.int32(8),
10     minRapidity = cms.double(-2.5),
11     maxRapidity = cms.double(2.5),
12     tip = cms.double(3.5),
13     lip = cms.double(30.0),
14     pdgId = cms.vint32()
15     )
16    
17