Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 trackingParticleSelector = cms.EDFilter("TrackingParticleSelector",
0004     src = cms.InputTag("mix","MergedTrackTruth"),
0005     chargedOnly = cms.bool(True),
0006     stableOnly = cms.bool(False),
0007     pdgId = cms.vint32(),
0008     tip = cms.double(3.5),
0009     signalOnly = cms.bool(True),
0010     intimeOnly = cms.bool(False),
0011     minRapidity = cms.double(-2.4),
0012     lip = cms.double(30.0),
0013     ptMin = cms.double(0.9),
0014     ptMax = cms.double(1e100),
0015     maxRapidity = cms.double(2.4),
0016     minHit = cms.int32(0),
0017     minPhi = cms.double(-3.2),
0018     maxPhi = cms.double(3.2),
0019     invertRapidityCut = cms.bool(False)
0020 )