File indexing completed on 2024-04-06 12:30:39
0001 import FWCore.ParameterSet.Config as cms
0002 from SimGeneral.MixingModule.trackingTruthProducer_cfi import trackingParticles
0003
0004 trackingParticlesSelection = cms.PSet(
0005 lipTP = cms.double(1000),
0006 chargedOnlyTP = cms.bool(True),
0007 stableOnlyTP = cms.bool(False),
0008 pdgIdTP = cms.vint32(),
0009 signalOnlyTP = cms.bool(False),
0010 intimeOnlyTP = cms.bool(False),
0011 minRapidityTP = cms.double(-5.0),
0012 minHitTP = cms.int32(0),
0013 ptMinTP = cms.double(0.1),
0014 ptMaxTP = cms.double(1e100),
0015 maxRapidityTP = cms.double(5.0),
0016 tipTP = cms.double(1000)
0017 )
0018
0019 trackingParticles.select = cms.PSet(trackingParticlesSelection)