3 from TrigHLTJetHypo.RepeatedConditionParams
import RepeatedConditionParams
4 from TrigHLTJetHypo.HelperConfigToolParams
import HelperConfigToolParams
5 from TrigHLTJetHypo.ConditionDefaults
import defaults
6 from TrigHLTJetHypo.make_treevec
import make_treevec
10 all_elemental_keys = (
'etaRange',
'nnJvt',
'jvt',
'smc',
11 'threshold',
'momCuts',
'bsel',
'tausel',
12 'clrsel',
'pileuprm',
'timing',
'timeSig')
17 args = momCuts.split(separator)
26 elemental_keys = [k
for k
in all_elemental_keys
if k
in cp]
27 cp_elemental_args = {k : cp[k]
for k
in elemental_keys
if cp[k]}
31 for k, v
in cp_elemental_args.items():
32 if v ==
'nosmc': todelete.append(k)
34 for k
in todelete: del cp_elemental_args[k]
40 for k, v
in cp_elemental_args.items():
44 condargs.append((key, vals))
50 condargs.append((key, vals))
56 condargs.append((key, vals))
62 assert values[0]==
'',
'nnJvt condition takes only version post-argument'
63 assert values[1].startswith(
'v'),
'nnJvt condition expects version as post-argument'
65 version_to_name = dict(
72 'nnJvtName': version_to_name[values[1]]
75 condargs.append((key, vals))
80 assert values[1] ==
'',
'jvt condition takes only one argument, two were given'
83 condargs.append((key, vals))
90 condargs.append((key, vals))
97 condargs.append((key, vals))
101 values = v.split(key)
104 condargs.append((key, vals))
108 values = v.split(key)
109 assert values[1] ==
'',
'bgn1 condition takes only one argument, two were given'
123 assert (values[0]
in gn1_WPs.keys()),f
"The efficiency of the specified GN1 cut \'{v}\' can not be found in the WP dictionary. Please add or remove the WP from the GN1 WP dictionary."
125 lo = gn1_WPs[values[0]]
131 'namePb':
'fastGN120230331_pb',
132 'namePc':
'fastGN120230331_pc',
133 'namePu':
'fastGN120230331_pu',
134 'nameValid':
'TracksForMinimalJetTag_isValid'
137 condargs.append((k, vals))
141 values = v.split(key)
142 assert values[1] ==
'',
'bgntwox condition takes only one argument, two were given'
153 assert (values[0]
in gn2x_WPs.keys()),f
"The efficiency of the specified gn2x cut \'{v}\' can not be found in the WP dictionary. Please add or remove the WP from the dips WP dictionary."
155 lo = gn2x_WPs[values[0]]
160 'namePb':
'GN2Xv01_phbb',
161 'namePc':
'GN2Xv01_ptop',
162 'namePu':
'GN2Xv01_pqcd',
163 'nameValid':
'TracksForMinimalJetTag_isValid'
165 condargs.append((k, vals))
169 values = v.split(key)
170 assert values[1] ==
'',
'bgn2 condition takes only one argument, two were given'
184 assert (values[0]
in gn2_WPs.keys()),f
"The efficiency of the specified GN2 cut \'{v}\' can not be found in the WP dictionary. Please add or remove the WP from the GN2 WP dictionary."
186 lo = gn2_WPs[values[0]]
192 'namePb':
'fastGN220240122_pb',
193 'namePc':
'fastGN220240122_pc',
194 'namePu':
'fastGN220240122_pu',
195 'nameValid':
'TracksForMinimalJetTag_isValid'
198 condargs.append((k, vals))
201 values = v.split(key)
202 assert values[1] ==
'',
'bdips condition takes only one argument, two were given'
217 assert (values[0]
in dips_WPs.keys()),f
"The efficiency of the specified dips cut \'{v}\' can not be found in the WP dictionary. Please add or remove the WP from the dips WP dictionary."
219 lo = dips_WPs[values[0]]
224 'namePb':
'fastDips_pb',
225 'namePc':
'fastDips_pc',
226 'namePu':
'fastDips_pu',
227 'nameValid':
'TracksForMinimalJetTag_isValid'
229 condargs.append((k, vals))
232 raise ValueError(f
'btagger {v.split("b")[1]} not supportted')
236 values = v.split(key)
237 assert values[1] ==
'' ,
'gntau condition takes only one argument, two were given'
247 assert (values[0]
in gntau_WPs.keys()),f
"The efficiency of the specified gntau cut \'{v}\' can not be found in the WP dictionary. Please add or remove the WP from the gntau WP dictionary."
249 lo = gntau_WPs[values[0]]
253 'namePtau':
'fastGNTau20240216_ptau',
254 'namePu':
'fastGNTau20240216_pu',
255 'nameValid':
'TracksForMinimalJetTag_isValid'
257 condargs.append((k, vals))
261 from TrigHLTJetHypo.FastReductionAlgToolFactory
import jetMoments
266 for moment
in jetMoments:
268 key=
'mom{}'.
format(moment)
269 lo, hi = cutstr.split(key)
271 vals[
"moment"] = jetMoments[moment]
272 condargs.append((key, vals))
274 for moment
in jetMoments:
276 key=
'mom{}'.
format(moment)
277 lo, hi = v.split(key)
279 vals[
"moment"] = jetMoments[moment]
280 condargs.append((key, vals))
283 values = v.split(key)
285 lo=values[0].
replace(
"n",
"-",1)
287 hi=values[1].
replace(
"n",
"-",1)
289 condargs.append((key, vals))
294 """build two lists of RepeatedConditionConfig objects
295 one list contains the Conditions to be used by FastReducer,
296 and the other Contains the conditions used to filter the Condition.
297 Each list has one entry per chain part"""
299 assert chain_parts,
'routing error, module %s: no chain parts' % __name__
303 filterparam_inds = []
314 for cp
in chain_parts:
322 multiplicity =
int(cp[
'multiplicity'])
323 chainPartInd = cp[
'chainPartIndex']
326 filterparam_inds.append(-1)
330 clique = clique_list.index(condargs)
333 clique_list.append(condargs)
334 clique = len(clique_list)-1
336 repcondargs.append(RepeatedConditionParams(tree_id = ncp,
339 chainPartInd=chainPartInd,
340 multiplicity=multiplicity,
347 assert treevec == [0
for i
in range(len(chain_parts) + 1)]
349 assert len(repcondargs) == len(filterparam_inds)
350 helper_params = HelperConfigToolParams(treevec=treevec,
351 repcondargs=repcondargs,
352 filterparams=filterparams,
353 filterparam_inds=filterparam_inds)
355 return [helper_params]