CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  maxRapidityTP = cms.double(5.0),
15  tipTP = cms.double(1000)
16 )
17 
18 trackingParticles.select = cms.PSet(trackingParticlesSelection)