Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltFixedGridRhoFastjetAllCaloForEGamma = cms.EDProducer("FixedGridRhoProducerFastjetFromRecHit",
0004     eThresHB = cms.vdouble(0.8, 1.2, 1.2, 1.2),
0005     eThresHE = cms.vdouble(
0006         0.1, 0.2, 0.2, 0.2, 0.2,
0007         0.2, 0.2
0008     ),
0009     ebRecHitsTag = cms.InputTag("hltEcalRecHit","EcalRecHitsEB"),
0010     eeRecHitsTag = cms.InputTag("hltEcalRecHit","EcalRecHitsEE"),
0011     gridSpacing = cms.double(0.55),
0012     hbheRecHitsTag = cms.InputTag("hltHbhereco"),
0013     maxRapidity = cms.double(2.5),
0014     skipECAL = cms.bool(False),
0015     skipHCAL = cms.bool(False)
0016 )