Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def CosmicTrackingParticleSelector(*args, **kwargs):
0004   mod = cms.EDFilter('CosmicTrackingParticleSelector',
0005     src = cms.InputTag(''),
0006     ptMin = cms.double(0.9),
0007     minRapidity = cms.double(-2.4),
0008     maxRapidity = cms.double(2.4),
0009     tip = cms.double(100),
0010     lip = cms.double(100),
0011     minHit = cms.int32(0),
0012     chargedOnly = cms.bool(True),
0013     pdgId = cms.vint32(),
0014     filter = cms.bool(False),
0015     throwOnMissing = cms.untracked.bool(True),
0016     mightGet = cms.optional.untracked.vstring
0017   )
0018   for a in args:
0019     mod.update_(a)
0020   mod.update_(kwargs)
0021   return mod