CMS 3D CMS Logo

selectSimTracks_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Not actually functioning at the moment, use primaryChgSimTracks - Matt Nguyen, 24/7/2013
4 findableSimTracks = cms.EDFilter("HitPixelLayersTPSelection",
5  src = cms.InputTag("mix","MergedTrackTruth"),
6  tripletSeedOnly = cms.bool(True),
7  chargedOnly = cms.bool(True),
8  signalOnly = cms.bool(False),
9  primaryOnly = cms.bool(True),
10  tpStatusBased = cms.bool(True), # for primary particle definition
11  ptMin = cms.double(2.0),
12  minHit = cms.int32(8),
13  minRapidity = cms.double(-2.5),
14  maxRapidity = cms.double(2.5),
15  tip = cms.double(3.5),
16  lip = cms.double(30.0),
17  pdgId = cms.vint32()
18 )
19 
20 
21 primaryChgSimTracks = cms.EDFilter("HitPixelLayersTPSelection",
22  src = cms.InputTag("mix","MergedTrackTruth"),
23  tripletSeedOnly = cms.bool(False),
24  chargedOnly = cms.bool(True),
25  signalOnly = cms.bool(False),
26  primaryOnly = cms.bool(True),
27  tpStatusBased = cms.bool(True),
28  ptMin = cms.double(0.1),
29  minHit = cms.int32(3),
30  minRapidity = cms.double(-2.5),
31  maxRapidity = cms.double(2.5),
32  tip = cms.double(3.5),
33  lip = cms.double(30.0),
34  pdgId = cms.vint32()
35 )
36 
37