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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
import FWCore.ParameterSet.Config as cms
# helper functions
from HLTrigger.Configuration.common import *
# add one customisation function per PR
# - put the PR number into the name of the function
# - add a short comment
# for example:
# CCCTF tuning
# def customiseFor12718(process):
# for pset in process._Process__psets.values():
# if hasattr(pset,'ComponentType'):
# if (pset.ComponentType == 'CkfBaseTrajectoryFilter'):
# if not hasattr(pset,'minGoodStripCharge'):
# pset.minGoodStripCharge = cms.PSet(refToPSet_ = cms.string('HLTSiStripClusterChargeCutNone'))
# return process
def customiseForOffline(process):
# For running HLT offline and relieve the strain on Frontier so it will no longer inject a
# transaction id which tells Frontier to add a unique "&freshkey" to many query URLs.
# That was intended as a feature to only be used by the Online HLT, to guarantee that fresh conditions
# from the database were loaded at each Lumi section
# Seee CMSHLT-3123 for further details
if hasattr(process, 'GlobalTag'):
# Set ReconnectEachRun and RefreshEachRun to False
process.GlobalTag.ReconnectEachRun = cms.untracked.bool(False)
process.GlobalTag.RefreshEachRun = cms.untracked.bool(False)
if hasattr(process.GlobalTag, 'toGet'):
# Filter out PSet objects containing only 'record' and 'refreshTime'
process.GlobalTag.toGet = [
pset for pset in process.GlobalTag.toGet
if set(pset.parameterNames_()) != {'record', 'refreshTime'}
]
return process
def customizeHLTfor47611(process):
""" This customizer
- cleans up the CANtupletAlpaka producers paramters;
- adds the geometry paramters used to fill the CAGeometry;
- adds the average sizes paramters to the CANtupletAlpaka producers;
- for pp and HIN hlt setups.
"""
ca_producers_pp = ['CAHitNtupletAlpakaPhase1@alpaka','alpaka_serial_sync::CAHitNtupletAlpakaPhase1']
ca_producers_hi = ['CAHitNtupletAlpakaHIonPhase1@alpaka','alpaka_serial_sync::CAHitNtupletAlpakaHIonPhase1']
ca_producers = ca_producers_pp + ca_producers_hi
ca_parameters = [ 'CAThetaCutBarrel', 'CAThetaCutForward',
'dcaCutInnerTriplet', 'dcaCutOuterTriplet',
'doPtCut', 'doZ0Cut', 'idealConditions',
'includeJumpingForwardDoublets', 'phiCuts','doClusterCut','CPE']
has_pp_producers = False
has_hi_producers = False
for ca_producer in ca_producers:
for prod in producers_by_type(process, ca_producer):
for par in ca_parameters:
if hasattr(prod, par):
delattr(prod,par)
if not hasattr(prod, 'dzdrFact'):
setattr(prod, 'dzdrFact', cms.double(8.0 * 0.0285 / 0.015))
if not hasattr(prod, 'maxDYsize12'):
setattr(prod, 'maxDYsize12', cms.int32(28))
if not hasattr(prod, 'maxDYsize'):
setattr(prod, 'maxDYsize', cms.int32(20))
if not hasattr(prod, 'maxDYPred'):
setattr(prod, 'maxDYPred', cms.int32(20))
if hasattr(prod, 'maxNumberOfDoublets'):
v = getattr(prod, 'maxNumberOfDoublets')
delattr(prod, 'maxNumberOfDoublets')
setattr(prod, 'maxNumberOfDoublets', cms.string(str(v.value())))
for ca_producer in ca_producers_pp:
for prod in producers_by_type(process, ca_producer):
has_pp_producers = True
if not hasattr(prod, 'maxNumberOfTuples'):
setattr(prod,'maxNumberOfTuples',cms.string(str(32*1024)))
if not hasattr(prod, 'avgCellsPerCell'):
setattr(prod, 'avgCellsPerCell', cms.double(0.071))
if not hasattr(prod, 'avgCellsPerHit'):
setattr(prod, 'avgCellsPerHit', cms.double(27))
if not hasattr(prod, 'avgHitsPerTrack'):
setattr(prod, 'avgHitsPerTrack', cms.double(4.5))
if not hasattr(prod, 'avgTracksPerCell'):
setattr(prod, 'avgTracksPerCell', cms.double(0.127))
if not hasattr(prod, 'geometry'):
geometryPS = cms.PSet(
startingPairs = cms.vuint32( [i for i in range(8)] + [i for i in range(13,20)]),
caDCACuts = cms.vdouble( [0.0918113099491] + [0.420724617835] * 9),
caThetaCuts = cms.vdouble([0.00123302705499] * 4 + [0.00355691321774] * 6),
pairGraph = cms.vuint32(
0, 1, 0, 4, 0,
7, 1, 2, 1, 4,
1, 7, 4, 5, 7,
8, 2, 3, 2, 4,
2, 7, 5, 6, 8,
9, 0, 2, 1, 3,
0, 5, 0, 8,
4, 6, 7, 9
),
phiCuts = cms.vint32(
965, 1241, 395, 698, 1058,
1211, 348, 782, 1016, 810,
463, 755, 694, 531, 770,
471, 592, 750, 348
),
minZ = cms.vdouble(
-20., 0., -30., -22., 10.,
-30., -70., -70., -22., 15.,
-30, -70., -70., -20., -22.,
0, -30., -70., -70.
),
maxZ = cms.vdouble( 20., 30., 0., 22., 30.,
-10., 70., 70., 22., 30.,
-15., 70., 70., 20., 22.,
30., 0., 70., 70.),
maxR = cms.vdouble(20., 9., 9., 20., 7.,
7., 5., 5., 20., 6.,
6., 5., 5., 20., 20.,
9., 9., 9., 9.)
)
setattr(prod, 'geometry', geometryPS)
for ca_producer in ca_producers_hi:
for prod in producers_by_type(process, ca_producer):
has_hi_producers = True
if not hasattr(prod, 'maxNumberOfTuples'):
setattr(prod,'maxNumberOfTuples',cms.string(str(256 * 1024))) # way too much, could be ~20k
if not hasattr(prod, 'avgCellsPerCell'):
setattr(prod, 'avgCellsPerCell', cms.double(0.5))
if not hasattr(prod, 'avgCellsPerHit'):
setattr(prod, 'avgCellsPerHit', cms.double(40))
if not hasattr(prod, 'avgHitsPerTrack'):
setattr(prod, 'avgHitsPerTrack', cms.double(5.0))
if not hasattr(prod, 'avgTracksPerCell'):
setattr(prod, 'avgTracksPerCell', cms.double(0.5))
if not hasattr(prod, 'geometry'):
geometryPS = cms.PSet(
caDCACuts = cms.vdouble(
0.05, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1
),
caThetaCuts = cms.vdouble(
0.001, 0.001, 0.001, 0.001, 0.002,
0.002, 0.002, 0.002, 0.002, 0.002
),
## This are the defaults actually
startingPairs = cms.vuint32(0,1,2),
pairGraph = cms.vuint32(0, 1, 0, 4, 0, 7, 1, 2, 1, 4, 1, 7, 4, 5, 7, 8, 2, 3, 2, 4, 2, 7, 5, 6, 8, 9, 0, 2, 1, 3, 0, 5, 0, 8, 4, 6, 7, 9),
phiCuts = cms.vint32(522, 730, 730, 522, 626, 626, 522, 522, 626, 626, 626, 522, 522, 522, 522, 522, 522, 522, 522),
minZ = cms.vdouble(-20, 0, -30, -22, 10, -30, -70, -70, -22, 15, -30, -70, -70, -20, -22, 0, -30, -70, -70),
maxZ = cms.vdouble(20, 30, 0, 22, 30, -10, 70, 70, 22, 30, -15, 70, 70, 20, 22, 30, 0, 70, 70),
maxR = cms.vdouble(20, 9, 9, 20, 7, 7, 5, 5, 20, 6, 6, 5, 5, 20, 20, 9, 9, 9, 9)
)
setattr(prod, 'geometry', geometryPS)
return process
# CMSSW version specific customizations
def customizeHLTforCMSSW(process, menuType="GRun"):
process = customiseForOffline(process)
# add call to action function in proper order: newest last!
# process = customiseFor12718(process)
process = customizeHLTfor47611(process)
return process
|