cms.EDProducer("PFMultiDepthClusterProducer",\ 
    clustersSource = cms.InputTag("hltParticleFlowClusterHBHE"),\ 
    energyCorrector = cms.PSet(\ 

    ),\ 
    pfClusterBuilder = cms.PSet(\ 
        algoName = cms.string('PFMultiDepthClusterizer'),\ 
        allCellsPositionCalc = cms.PSet(\ 
            algoName = cms.string('Basic2DGenericPFlowPositionCalc'),\ 
            logWeightDenominatorByDetector = cms.VPSet(\ 
                cms.PSet(\ 
                    depths = cms.vint32(1, 2, 3, 4),\ 
                    detector = cms.string('HCAL_BARREL1'),\ 
                    logWeightDenominator = cms.vdouble(0.1, 0.2, 0.3, 0.3)\ 
                ),\ 
                cms.PSet(\ 
                    depths = cms.vint32(\ 
                        1, 2, 3, 4, 5,\ 
                        6, 7\ 
                    ),\ 
                    detector = cms.string('HCAL_ENDCAP'),\ 
                    logWeightDenominator = cms.vdouble(\ 
                        0.1, 0.2, 0.2, 0.2, 0.2,\ 
                        0.2, 0.2\ 
                    )\ 
                )\ 
            ),\ 
            minAllowedNormalization = cms.double(1e-09),\ 
            minFractionInCalc = cms.double(1e-09),\ 
            posCalcNCrystals = cms.int32(-1)\ 
        ),\ 
        minFractionToKeep = cms.double(1e-07),\ 
        nSigmaEta = cms.double(2.0),\ 
        nSigmaPhi = cms.double(2.0)\ 
    ),\ 
    positionReCalc = cms.PSet(\ 

    ),\ 
    usePFThresholdsFromDB = cms.bool(True)\ 
)\