CMS 3D CMS Logo

particleFlowClusterHGCal_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 particleFlowClusterHGCal = cms.EDProducer("PFClusterProducer",
4  energyCorrector = cms.PSet(
5 
6  ),
7  initialClusteringStep = cms.PSet(
8  algoName = cms.string('RealisticSimClusterMapper'),
9  calibMaxEta = cms.double(3.0),
10  calibMinEta = cms.double(1.4),
11  egammaCalib = cms.vdouble(
12  1.0, 1.0, 1.01, 1.01, 1.02,
13  1.01, 1.01, 1.01
14  ),
15  exclusiveFraction = cms.double(0.6),
16  hadronCalib = cms.vdouble(
17  1.28, 1.28, 1.24, 1.19, 1.17,
18  1.17, 1.17, 1.17
19  ),
20  invisibleFraction = cms.double(0.6),
21  maxDforTimingSquared = cms.double(4.0),
22  maxDistance = cms.double(10.0),
23  maxDistanceFilter = cms.bool(True),
24  minNHitsforTiming = cms.uint32(3),
25  simClusterSrc = cms.InputTag("mix","MergedCaloTruth"),
26  thresholdsByDetector = cms.VPSet(),
27  timeOffset = cms.double(5),
28  useMCFractionsForExclEnergy = cms.bool(False)
29  ),
30  pfClusterBuilder = cms.PSet(
31 
32  ),
33  positionReCalc = cms.PSet(
34  algoName = cms.string('Cluster3DPCACalculator'),
35  minFractionInCalc = cms.double(1e-09),
36  updateTiming = cms.bool(False)
37  ),
38  recHitCleaners = cms.VPSet(),
39  recHitsSource = cms.InputTag("particleFlowRecHitHGC"),
40  seedCleaners = cms.VPSet(),
41  seedFinder = cms.PSet(
42  algoName = cms.string('PassThruSeedFinder'),
43  nNeighbours = cms.int32(8),
44  thresholdsByDetector = cms.VPSet()
45  )
46 )