test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
particleFlowClusterHCAL_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 particleFlowClusterHCAL = cms.EDProducer('PFMultiDepthClusterProducer',
4  clustersSource = cms.InputTag("particleFlowClusterHBHE"),
5  pfClusterBuilder =cms.PSet(
6  algoName = cms.string("PFMultiDepthClusterizer"),
7  nSigmaEta = cms.double(2.),
8  nSigmaPhi = cms.double(2.),
9  #pf clustering parameters
10  minFractionToKeep = cms.double(1e-7),
11  allCellsPositionCalc = cms.PSet(
12  algoName = cms.string("Basic2DGenericPFlowPositionCalc"),
13  minFractionInCalc = cms.double(1e-9),
14  posCalcNCrystals = cms.int32(-1),
15  logWeightDenominator = cms.double(0.8),#same as gathering threshold
16  minAllowedNormalization = cms.double(1e-9)
17  )
18  ),
19  positionReCalc = cms.PSet(),
20  energyCorrector = cms.PSet()
21 )