CMS 3D CMS Logo

hltHgcalLayerClustersEEL1Seeded_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 hltHgcalLayerClustersEEL1Seeded = cms.EDProducer("HGCalLayerClusterProducer",
5  detector = cms.string('EE'),
6  mightGet = cms.optional.untracked.vstring,
7  nHitsTime = cms.uint32(3),
8  plugin = cms.PSet(
9  dEdXweights = HGCAL_reco_constants.dEdXweights,
10  deltac = cms.vdouble(
11  1.3,
12  1.3,
13  1.3,
14  0.0315
15  ),
16  deltasi_index_regemfac = cms.int32(3),
17  dependSensor = cms.bool(True),
18  ecut = cms.double(3),
19  fcPerEle = HGCAL_reco_constants.fcPerEle,
20  fcPerMip = HGCAL_reco_constants.fcPerMip,
21  kappa = cms.double(9),
22  maxNumberOfThickIndices = HGCAL_reco_constants.maxNumberOfThickIndices,
23  noiseMip = HGCAL_reco_constants.noiseMip,
24  noises = HGCAL_reco_constants.noises,
25  positionDeltaRho2 = HGCAL_reco_constants.positionDeltaRho2,
26  sciThicknessCorrection = HGCAL_reco_constants.sciThicknessCorrection,
27  thicknessCorrection = HGCAL_reco_constants.thicknessCorrection,
28  thresholdW0 = HGCAL_reco_constants.thresholdW0,
29  type = cms.string('SiCLUE'),
30  use2x2 = cms.bool(True),
31  verbosity = cms.untracked.uint32(3)
32  ),
33  recHits = cms.InputTag("hltRechitInRegionsHGCAL","HGCEERecHits"),
34  timeClname = cms.string('timeLayerCluster')
35 )
36