Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HitPixelLayersTPSelection(*args, **kwargs):
0004   mod = cms.EDFilter('HitPixelLayersTPSelection',
0005     src = cms.InputTag(''),
0006     tripletSeedOnly = cms.bool(True),
0007     ptMin = cms.double(2),
0008     minRapidity = cms.double(-2.5),
0009     maxRapidity = cms.double(2.5),
0010     tip = cms.double(3.5),
0011     lip = cms.double(30),
0012     minHit = cms.int32(8),
0013     signalOnly = cms.bool(False),
0014     chargedOnly = cms.bool(True),
0015     primaryOnly = cms.bool(True),
0016     tpStatusBased = cms.bool(True),
0017     pdgId = cms.vint32(),
0018     filter = cms.bool(False),
0019     throwOnMissing = cms.untracked.bool(True),
0020     mightGet = cms.optional.untracked.vstring
0021   )
0022   for a in args:
0023     mod.update_(a)
0024   mod.update_(kwargs)
0025   return mod