File indexing completed on 2025-02-07 14:24:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def FixedGridRhoProducerFastjetFromRecHit(*args, **kwargs):
0004 mod = cms.EDProducer('FixedGridRhoProducerFastjetFromRecHit',
0005 hbheRecHitsTag = cms.InputTag('hltHbhereco'),
0006 ebRecHitsTag = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEB'),
0007 eeRecHitsTag = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEE'),
0008 skipHCAL = cms.bool(False),
0009 skipECAL = cms.bool(False),
0010 eThresHB = cms.vdouble(
0011 0.1,
0012 0.2,
0013 0.3,
0014 0.3
0015 ),
0016 eThresHE = cms.vdouble(
0017 0.1,
0018 0.2,
0019 0.2,
0020 0.2,
0021 0.2,
0022 0.2,
0023 0.2
0024 ),
0025 maxRapidity = cms.double(2.5),
0026 gridSpacing = cms.double(0.55),
0027 usePFThresholdsFromDB = cms.bool(True),
0028 mightGet = cms.optional.untracked.vstring
0029 )
0030 for a in args:
0031 mod.update_(a)
0032 mod.update_(kwargs)
0033 return mod