ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/TrackAnalysis/python/findableSimTracks_cfi.py
Revision: 1.3
Committed: Tue Apr 20 11:40:40 2010 UTC (15 years ago) by sungho
Content type: text/x-python
Branch: MAIN
Changes since 1.2: +3 -1 lines
Log Message:
definiation of primary

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 sungho 1.3 primaryOnly = cms.bool(True),
9     tpStatusBased = cms.bool(False), # for primary particle definiation
10 edwenger 1.1 ptMin = cms.double(2.0),
11     minHit = cms.int32(8),
12     minRapidity = cms.double(-2.5),
13     maxRapidity = cms.double(2.5),
14 sungho 1.3 tip = cms.double(0.05), #was 3.5
15 edwenger 1.1 lip = cms.double(30.0),
16     pdgId = cms.vint32()
17     )
18    
19