CMS 3D CMS Logo

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