Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants
0003 
0004 hgcalLayerClustersHSci = cms.EDProducer("HGCalLayerClusterProducer",
0005     detector = cms.string('BH'),
0006     mightGet = cms.optional.untracked.vstring,
0007     nHitsTime = cms.uint32(3),
0008     plugin = cms.PSet(
0009         dEdXweights = HGCAL_reco_constants.dEdXweights,
0010         deltac = cms.vdouble(
0011             1.3,
0012             1.3,
0013             1.3,
0014             0.0315
0015         ),
0016         deltasi_index_regemfac = cms.int32(3),
0017         dependSensor = cms.bool(True),
0018         ecut = cms.double(3),
0019         fcPerEle = HGCAL_reco_constants.fcPerEle,
0020         fcPerMip = HGCAL_reco_constants.fcPerMip,
0021         kappa = cms.double(9),
0022         maxNumberOfThickIndices = HGCAL_reco_constants.maxNumberOfThickIndices,
0023         noiseMip = HGCAL_reco_constants.noiseMip,
0024         noises = HGCAL_reco_constants.noises,
0025         positionDeltaRho2 = HGCAL_reco_constants.positionDeltaRho2,
0026         sciThicknessCorrection = HGCAL_reco_constants.sciThicknessCorrection,
0027         thicknessCorrection = HGCAL_reco_constants.thicknessCorrection,
0028         thresholdW0 = HGCAL_reco_constants.thresholdW0,
0029         type = cms.string('SciCLUE'),
0030         use2x2 = cms.bool(True),
0031         verbosity = cms.untracked.uint32(3)
0032     ),
0033     recHits = cms.InputTag("HGCalRecHit","HGCHEBRecHits"),
0034     timeClname = cms.string('timeLayerCluster')
0035 )