File indexing completed on 2025-02-07 14:23:52
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTDisplacedtktkVtxProducer(*args, **kwargs):
0004 mod = cms.EDProducer('HLTDisplacedtktkVtxProducer',
0005 Src = cms.InputTag('hltL3MuonCandidates'),
0006 PreviousCandTag = cms.InputTag(''),
0007 MaxEta = cms.double(2.5),
0008 MinPt = cms.double(0),
0009 MinPtPair = cms.double(0),
0010 MinInvMass = cms.double(1),
0011 MaxInvMass = cms.double(20),
0012 massParticle1 = cms.double(0.1396),
0013 massParticle2 = cms.double(0.4937),
0014 ChargeOpt = cms.int32(-1),
0015 triggerTypeDaughters = cms.int32(0),
0016 mightGet = cms.optional.untracked.vstring
0017 )
0018 for a in args:
0019 mod.update_(a)
0020 mod.update_(kwargs)
0021 return mod