Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-18 02:45:09

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltParticleFlowClusterHCAL = cms.EDProducer("PFMultiDepthClusterProducer",
0004     clustersSource = cms.InputTag("hltParticleFlowClusterHBHE"),
0005     energyCorrector = cms.PSet(
0006 
0007     ),
0008     pfClusterBuilder = cms.PSet(
0009         algoName = cms.string('PFMultiDepthClusterizer'),
0010         allCellsPositionCalc = cms.PSet(
0011             algoName = cms.string('Basic2DGenericPFlowPositionCalc'),
0012             logWeightDenominatorByDetector = cms.VPSet(
0013                 cms.PSet(
0014                     depths = cms.vint32(1, 2, 3, 4),
0015                     detector = cms.string('HCAL_BARREL1'),
0016                     logWeightDenominator = cms.vdouble(0.8, 1.2, 1.2, 1.2)
0017                 ),
0018                 cms.PSet(
0019                     depths = cms.vint32(
0020                         1, 2, 3, 4, 5,
0021                         6, 7
0022                     ),
0023                     detector = cms.string('HCAL_ENDCAP'),
0024                     logWeightDenominator = cms.vdouble(
0025                         0.1, 0.2, 0.2, 0.2, 0.2,
0026                         0.2, 0.2
0027                     )
0028                 )
0029             ),
0030             minAllowedNormalization = cms.double(1e-09),
0031             minFractionInCalc = cms.double(1e-09),
0032             posCalcNCrystals = cms.int32(-1)
0033         ),
0034         minFractionToKeep = cms.double(1e-07),
0035         nSigmaEta = cms.double(2.0),
0036         nSigmaPhi = cms.double(2.0)
0037     ),
0038     positionReCalc = cms.PSet(
0039 
0040     )
0041 )