Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltEgammaHoverEUnseeded = cms.EDProducer("EgammaHLTHcalVarProducerFromRecHit",
0004     absEtaLowEdges = cms.vdouble(0.0, 1.479),
0005     depth = cms.int32(0),
0006     doEtSum = cms.bool(False),
0007     doRhoCorrection = cms.bool(False),
0008     effectiveAreas = cms.vdouble(0.105, 0.17),
0009     innerCone = cms.double(0.0),
0010     outerCone = cms.double(0.14),
0011     recoEcalCandidateProducer = cms.InputTag("hltEgammaCandidatesUnseeded"),
0012     rhoMax = cms.double(99999999.0),
0013     rhoProducer = cms.InputTag("hltFixedGridRhoFastjetAllCaloForEGamma"),
0014     rhoScale = cms.double(1.0),
0015     useSingleTower = cms.bool(False),
0016     hbheRecHitsTag = cms.InputTag( "hltHbhereco" ),
0017     eThresHB = cms.vdouble( 0.1, 0.2, 0.3, 0.3 ), #Run3 thresholds. Will be overwritten with valid aging customisation
0018     etThresHB = cms.vdouble( 0.0, 0.0, 0.0, 0.0 ),
0019     eThresHE = cms.vdouble( 0.1, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2 ),
0020     etThresHE = cms.vdouble( 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ),
0021     usePFThresholdsFromDB = cms.bool(True),
0022     maxSeverityHB = cms.int32( 9 ),
0023     maxSeverityHE = cms.int32( 9 )
0024 )