File indexing completed on 2025-02-07 14:23:33
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def IsolatedEcalPixelTrackCandidateProducer(*args, **kwargs):
0004 mod = cms.EDProducer('IsolatedEcalPixelTrackCandidateProducer',
0005 filterLabel = cms.InputTag('hltIsolPixelTrackL2Filter'),
0006 EBRecHitSource = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEB'),
0007 EERecHitSource = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEE'),
0008 EBHitEnergyThreshold = cms.double(0.1),
0009 EBHitCountEnergyThreshold = cms.double(0.5),
0010 EEHitEnergyThreshold0 = cms.double(-41.0664),
0011 EEHitEnergyThreshold1 = cms.double(68.795),
0012 EEHitEnergyThreshold2 = cms.double(-38.1483),
0013 EEHitEnergyThreshold3 = cms.double(7.04303),
0014 EEFacHitCountEnergyThreshold = cms.double(10),
0015 EcalConeSizeEta0 = cms.double(0.09),
0016 EcalConeSizeEta1 = cms.double(0.14),
0017 mightGet = cms.optional.untracked.vstring
0018 )
0019 for a in args:
0020 mod.update_(a)
0021 mod.update_(kwargs)
0022 return mod