Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:36

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TrackingParticleRefSelector(*args, **kwargs):
0004   mod = cms.EDFilter('TrackingParticleRefSelector',
0005     src = cms.InputTag(''),
0006     ptMin = cms.double(0.9),
0007     ptMax = cms.double(1e+100),
0008     minRapidity = cms.double(-2.4),
0009     maxRapidity = cms.double(2.4),
0010     tip = cms.double(3.5),
0011     lip = cms.double(30),
0012     minHit = cms.int32(0),
0013     signalOnly = cms.bool(True),
0014     intimeOnly = cms.bool(False),
0015     chargedOnly = cms.bool(True),
0016     stableOnly = cms.bool(False),
0017     pdgId = cms.vint32(),
0018     invertRapidityCut = cms.bool(False),
0019     minPhi = cms.double(-3.2),
0020     maxPhi = cms.double(3.2),
0021     filter = cms.bool(False),
0022     throwOnMissing = cms.untracked.bool(True),
0023     mightGet = cms.optional.untracked.vstring
0024   )
0025   for a in args:
0026     mod.update_(a)
0027   mod.update_(kwargs)
0028   return mod