File indexing completed on 2024-08-21 04:46:33
0001 import FWCore.ParameterSet.Config as cms
0002 from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants
0003
0004 hltHgcalSoARecHitsProducer = cms.EDProducer("HGCalSoARecHitsProducer@alpaka",
0005 alpaka = cms.untracked.PSet(
0006 backend = cms.untracked.string('')
0007 ),
0008 dEdXweights = HGCAL_reco_constants.dEdXweights,
0009 detector = cms.string('EE'),
0010 ecut = cms.double(3),
0011 fcPerEle = HGCAL_reco_constants.fcPerEle,
0012 fcPerMip = HGCAL_reco_constants.fcPerMip,
0013 maxNumberOfThickIndices = HGCAL_reco_constants.maxNumberOfThickIndices,
0014 noises = HGCAL_reco_constants.noises,
0015 recHits = cms.InputTag("hltHGCalRecHit","HGCEERecHits"),
0016 thicknessCorrection = HGCAL_reco_constants.thicknessCorrection,
0017 )
0018