File indexing completed on 2025-02-07 14:24:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def BoostedDoubleSVProducer(*args, **kwargs):
0004 mod = cms.EDProducer('BoostedDoubleSVProducer',
0005 beta = cms.double(1),
0006 R0 = cms.double(0.8),
0007 maxSVDeltaRToJet = cms.double(0.7),
0008 trackSelection = cms.PSet(),
0009 trackPairV0Filter = cms.PSet(
0010 k0sMassWindow = cms.double(0.03)
0011 ),
0012 svTagInfos = cms.InputTag('pfInclusiveSecondaryVertexFinderAK8TagInfos'),
0013 weights = cms.InputTag(''),
0014 mightGet = cms.optional.untracked.vstring
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod