Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTSingleVertexPixelTrackFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTSingleVertexPixelTrackFilter',
0005     saveTags = cms.bool(True),
0006     vertexCollection = cms.InputTag('hltPixelVerticesForMinBias'),
0007     trackCollection = cms.InputTag('hltPixelCands'),
0008     MinPt = cms.double(0.2),
0009     MaxPt = cms.double(10000),
0010     MaxEta = cms.double(1),
0011     MaxVz = cms.double(10),
0012     MinTrks = cms.int32(30),
0013     MinSep = cms.double(0.12),
0014     mightGet = cms.optional.untracked.vstring
0015   )
0016   for a in args:
0017     mod.update_(a)
0018   mod.update_(kwargs)
0019   return mod