1 import FWCore.ParameterSet.Config
as cms
6 import hgcalLayersCalibrationCoefficients_cfi
as layercalibparam
8 C2d_parValues = cms.PSet( clusterType = cms.string(
'dRNNC2d'),
9 seeding_threshold_silicon = cms.double(5),
10 seeding_threshold_scintillator = cms.double(5),
11 clustering_threshold_silicon = cms.double(2),
12 clustering_threshold_scintillator = cms.double(2),
13 dR_cluster = cms.double(6.),
14 calibSF_cluster=cms.double(0.),
15 layerWeights = layercalibparam.TrgLayer_weights,
16 applyLayerCalibration = cms.bool(
True)
19 be_proc = cms.PSet( ProcessorName = cms.string(
'HGCalBackendLayer1Processor2DClustering'),
20 C2d_parameters = C2d_parValues.clone()
23 hgcalBackEndLayer1Producer = cms.EDProducer(
24 "HGCalBackendLayer1Producer",
25 InputTriggerCells = cms.InputTag(
'hgcalConcentratorProducer:HGCalConcentratorProcessorSelection'),
26 ProcessorParameters = be_proc.clone()