CMS 3D CMS Logo

hltHgcalSoARecHitsProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants
3 
4 hltHgcalSoARecHitsProducer = cms.EDProducer("HGCalSoARecHitsProducer@alpaka",
5  alpaka = cms.untracked.PSet(
6  backend = cms.untracked.string('')
7  ),
8  dEdXweights = HGCAL_reco_constants.dEdXweights,
9  detector = cms.string('EE'),
10  ecut = cms.double(3),
11  fcPerEle = HGCAL_reco_constants.fcPerEle,
12  fcPerMip = HGCAL_reco_constants.fcPerMip,
13  maxNumberOfThickIndices = HGCAL_reco_constants.maxNumberOfThickIndices,
14  noises = HGCAL_reco_constants.noises,
15  recHits = cms.InputTag("hltHGCalRecHit","HGCEERecHits"),
16  thicknessCorrection = HGCAL_reco_constants.thicknessCorrection,
17 )
18