File indexing completed on 2023-03-17 10:45:09
0001 import FWCore.ParameterSet.Config as cms
0002
0003 fixedGridRhoProducerFastjetFromRecHit = cms.EDProducer('FixedGridRhoProducerFastjetFromRecHit',
0004 hbheRecHitsTag = cms.InputTag('hltHbhereco'),
0005 ebRecHitsTag = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEB'),
0006 eeRecHitsTag = cms.InputTag('hltEcalRecHit', 'EcalRecHitsEE'),
0007 skipHCAL = cms.bool(False),
0008 skipECAL = cms.bool(False),
0009 eThresHB = cms.vdouble(
0010 0.1,
0011 0.2,
0012 0.3,
0013 0.3
0014 ),
0015 eThresHE = cms.vdouble(
0016 0.1,
0017 0.2,
0018 0.2,
0019 0.2,
0020 0.2,
0021 0.2,
0022 0.2
0023 ),
0024 maxRapidity = cms.double(2.5),
0025 gridSpacing = cms.double(0.55),
0026 mightGet = cms.optional.untracked.vstring
0027 )