ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/TrackAnalysis/python/findableSimTracks_cfi.py
Revision: 1.2
Committed: Thu Aug 27 12:22:18 2009 UTC (15 years, 8 months ago) by edwenger
Content type: text/x-python
Branch: MAIN
Changes since 1.1: +1 -1 lines
Log Message:
change findable definition to be more restrictive to primary tracking particles

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 edwenger 1.2 tip = cms.double(0.05), #was 3.5
13 edwenger 1.1 lip = cms.double(30.0),
14     pdgId = cms.vint32()
15     )
16    
17