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