CMS 3D CMS Logo

trackingTruthProducerSelection_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from SimGeneral.MixingModule.trackingTruthProducer_cfi import trackingParticles
3 
4 trackingParticlesSelection = cms.PSet(
5  lipTP = cms.double(1000),
6  chargedOnlyTP = cms.bool(True),
7  stableOnlyTP = cms.bool(False),
8  pdgIdTP = cms.vint32(),
9  signalOnlyTP = cms.bool(False),
10  intimeOnlyTP = cms.bool(False),
11  minRapidityTP = cms.double(-5.0),
12  minHitTP = cms.int32(0),
13  ptMinTP = cms.double(0.1),
14  ptMaxTP = cms.double(1e100),
15  maxRapidityTP = cms.double(5.0),
16  tipTP = cms.double(1000)
17 )
18 
19 trackingParticles.select = cms.PSet(trackingParticlesSelection)