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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
import FWCore.ParameterSet.Config as cms
hltParticleFlowClusterHBHE = cms.EDProducer("PFClusterProducer",
energyCorrector = cms.PSet(
),
initialClusteringStep = cms.PSet(
algoName = cms.string('Basic2DGenericTopoClusterizer'),
thresholdsByDetector = cms.VPSet(
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
gatheringThreshold = cms.vdouble(0.1, 0.2, 0.3, 0.3),
gatheringThresholdPt = cms.vdouble(0.0, 0.0, 0.0, 0.0)
),
cms.PSet(
depths = cms.vint32(
1, 2, 3, 4, 5,
6, 7
),
detector = cms.string('HCAL_ENDCAP'),
gatheringThreshold = cms.vdouble(
0.1, 0.2, 0.2, 0.2, 0.2,
0.2, 0.2
),
gatheringThresholdPt = cms.vdouble(
0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0
)
)
),
useCornerCells = cms.bool(True)
),
pfClusterBuilder = cms.PSet(
algoName = cms.string('Basic2DGenericPFlowClusterizer'),
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)
),
clusterTimeResFromSeed = cms.bool(False),
excludeOtherSeeds = cms.bool(True),
maxIterations = cms.uint32(5),
maxNSigmaTime = cms.double(10.0),
minChi2Prob = cms.double(0.0),
minFracTot = cms.double(1e-20),
minFractionToKeep = cms.double(1e-07),
positionCalc = 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(5)
),
recHitEnergyNorms = cms.VPSet(
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
recHitEnergyNorm = 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'),
recHitEnergyNorm = cms.vdouble(
0.1, 0.2, 0.2, 0.2, 0.2,
0.2, 0.2
)
)
),
showerSigma = cms.double(10.0),
stoppingTolerance = cms.double(1e-08),
timeResolutionCalcBarrel = cms.PSet(
constantTerm = cms.double(2.82),
constantTermLowE = cms.double(4.24),
corrTermLowE = cms.double(0.0),
noiseTerm = cms.double(21.86),
noiseTermLowE = cms.double(8),
threshHighE = cms.double(15.0),
threshLowE = cms.double(6.0)
),
timeResolutionCalcEndcap = cms.PSet(
constantTerm = cms.double(2.82),
constantTermLowE = cms.double(4.24),
corrTermLowE = cms.double(0.0),
noiseTerm = cms.double(21.86),
noiseTermLowE = cms.double(8),
threshHighE = cms.double(15.0),
threshLowE = cms.double(6.0)
),
timeSigmaEB = cms.double(10.0),
timeSigmaEE = cms.double(10.0)
),
positionReCalc = cms.PSet(
),
recHitCleaners = cms.VPSet(),
recHitsSource = cms.InputTag("hltParticleFlowRecHitHBHE"),
seedCleaners = cms.VPSet(),
seedFinder = cms.PSet(
algoName = cms.string('LocalMaximumSeedFinder'),
nNeighbours = cms.int32(4),
thresholdsByDetector = cms.VPSet(
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
seedingThreshold = cms.vdouble(0.125, 0.25, 0.35, 0.35),
seedingThresholdPt = cms.vdouble(0.0, 0.0, 0.0, 0.0)
),
cms.PSet(
depths = cms.vint32(
1, 2, 3, 4, 5,
6, 7
),
detector = cms.string('HCAL_ENDCAP'),
seedingThreshold = cms.vdouble(
0.1375, 0.275, 0.275, 0.275, 0.275,
0.275, 0.275
),
seedingThresholdPt = cms.vdouble(
0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0
)
)
)
),
usePFThresholdsFromDB = cms.bool(True)
)
|