1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
import FWCore.ParameterSet.Config as cms
hltParticleFlowClusterHO = cms.EDProducer("PFClusterProducer",
energyCorrector = cms.PSet(
),
initialClusteringStep = cms.PSet(
algoName = cms.string('Basic2DGenericTopoClusterizer'),
thresholdsByDetector = cms.VPSet(
cms.PSet(
detector = cms.string('HCAL_BARREL2_RING0'),
gatheringThreshold = cms.double(0.05),
gatheringThresholdPt = cms.double(0.0)
),
cms.PSet(
detector = cms.string('HCAL_BARREL2_RING1'),
gatheringThreshold = cms.double(0.05),
gatheringThresholdPt = cms.double(0.0)
)
),
useCornerCells = cms.bool(True)
),
pfClusterBuilder = cms.PSet(
algoName = cms.string('Basic2DGenericPFlowClusterizer'),
allCellsPositionCalc = cms.PSet(
algoName = cms.string('Basic2DGenericPFlowPositionCalc'),
logWeightDenominator = cms.double(0.05),
minAllowedNormalization = cms.double(1e-09),
minFractionInCalc = cms.double(1e-09),
posCalcNCrystals = cms.int32(-1)
),
excludeOtherSeeds = cms.bool(True),
maxIterations = cms.uint32(50),
minFracTot = cms.double(1e-20),
minFractionToKeep = cms.double(1e-07),
positionCalc = cms.PSet(
algoName = cms.string('Basic2DGenericPFlowPositionCalc'),
logWeightDenominator = cms.double(0.05),
minAllowedNormalization = cms.double(1e-09),
minFractionInCalc = cms.double(1e-09),
posCalcNCrystals = cms.int32(5)
),
recHitEnergyNorms = cms.VPSet(
cms.PSet(
detector = cms.string('HCAL_BARREL2_RING0'),
recHitEnergyNorm = cms.double(0.05)
),
cms.PSet(
detector = cms.string('HCAL_BARREL2_RING1'),
recHitEnergyNorm = cms.double(0.05)
)
),
showerSigma = cms.double(10.0),
stoppingTolerance = cms.double(1e-08)
),
positionReCalc = cms.PSet(
),
recHitCleaners = cms.VPSet(),
recHitsSource = cms.InputTag("hltParticleFlowRecHitHO"),
seedCleaners = cms.VPSet(),
seedFinder = cms.PSet(
algoName = cms.string('LocalMaximumSeedFinder'),
nNeighbours = cms.int32(4),
thresholdsByDetector = cms.VPSet(
cms.PSet(
detector = cms.string('HCAL_BARREL2_RING0'),
seedingThreshold = cms.double(0.08),
seedingThresholdPt = cms.double(0.0)
),
cms.PSet(
detector = cms.string('HCAL_BARREL2_RING1'),
seedingThreshold = cms.double(0.08),
seedingThresholdPt = cms.double(0.0)
)
)
),
usePFThresholdsFromDB = cms.bool(False)
)
|