File indexing completed on 2024-11-23 03:28:09
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTCaloJetTimingProducer(*args, **kwargs):
0004 mod = cms.EDProducer('HLTCaloJetTimingProducer',
0005 jets = cms.InputTag(''),
0006 barrelJets = cms.bool(False),
0007 endcapJets = cms.bool(False),
0008 ecalCellEnergyThresh = cms.double(0.5),
0009 ecalCellTimeThresh = cms.double(12.5),
0010 ecalCellTimeErrorThresh = cms.double(100),
0011 matchingRadius = cms.double(0.4),
0012 ebRecHitsColl = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEB'),
0013 eeRecHitsColl = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEE'),
0014 mightGet = cms.optional.untracked.vstring
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod