File indexing completed on 2025-04-17 02:41:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def Run3ScoutingElectronBestTrackProducer(*args, **kwargs):
0004 mod = cms.EDProducer('Run3ScoutingElectronBestTrackProducer',
0005 Run3ScoutingElectron = cms.InputTag('hltScoutingEgammaPacker'),
0006 TrackPtMin = cms.vdouble(
0007 0,
0008 0
0009 ),
0010 TrackChi2OverNdofMax = cms.vdouble(
0011 9999,
0012 9999
0013 ),
0014 RelativeEnergyDifferenceMax = cms.vdouble(
0015 9999,
0016 9999
0017 ),
0018 DeltaPhiMax = cms.vdouble(
0019 9999,
0020 9999
0021 ),
0022 mightGet = cms.optional.untracked.vstring
0023 )
0024 for a in args:
0025 mod.update_(a)
0026 mod.update_(kwargs)
0027 return mod