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 |
primaryOnly = cms.bool(True),
|
9 |
tpStatusBased = cms.bool(False), # for primary particle definiation
|
10 |
ptMin = cms.double(2.0),
|
11 |
minHit = cms.int32(8),
|
12 |
minRapidity = cms.double(-2.5),
|
13 |
maxRapidity = cms.double(2.5),
|
14 |
tip = cms.double(0.05), #was 3.5
|
15 |
lip = cms.double(30.0),
|
16 |
pdgId = cms.vint32()
|
17 |
)
|
18 |
|
19 |
|
20 |
primaryChgSimTracks = cms.EDFilter("HitPixelLayersTPSelection",
|
21 |
src = cms.InputTag("mergedtruth","MergedTrackTruth"),
|
22 |
tripletSeedOnly = cms.bool(False),
|
23 |
chargedOnly = cms.bool(True),
|
24 |
signalOnly = cms.bool(False),
|
25 |
primaryOnly = cms.bool(True),
|
26 |
tpStatusBased = cms.bool(True),
|
27 |
ptMin = cms.double(0.1),
|
28 |
minHit = cms.int32(3),
|
29 |
minRapidity = cms.double(-2.5),
|
30 |
maxRapidity = cms.double(2.5),
|
31 |
tip = cms.double(3.5),
|
32 |
lip = cms.double(30.0),
|
33 |
pdgId = cms.vint32()
|
34 |
)
|
35 |
|
36 |
|