Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
scenario_simple.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
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
7 
8 
9 # make a list of all possible cut items for the simple scenario
10 all_elemental_keys = ('etaRange', 'nnJvt', 'jvt', 'smc',
11  'threshold', 'momCuts', 'bsel', 'tausel',
12  'clrsel','pileuprm', 'timing', 'timeSig')
13 
14 # Extract moment cuts
15 def _cuts_from_momCuts(momCuts):
16  separator = 'XX'
17  args = momCuts.split(separator)
18  if len(args) > 1:
19  return args
20  return ''
21 
23 
24  # determine which cut variable are present in this chain part,
25  # and find their chain part values
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]}
28 
29  # remove place holders
30  todelete = []
31  for k, v in cp_elemental_args.items():
32  if v == 'nosmc': todelete.append(k)
33 
34  for k in todelete: del cp_elemental_args[k]
35 
36  # decode the chain part cut values to find the numerical cut values
37 
38  condargs = list()
39 
40  for k, v in cp_elemental_args.items():
41  if k == 'threshold':
42  key = 'pt'
43  vals = defaults(key, lo=v)
44  condargs.append((key, vals))
45 
46  if k == 'etaRange':
47  key='eta'
48  lo, hi = v.split(key)
49  vals = defaults(key, lo=lo, hi=hi)
50  condargs.append((key, vals))
51 
52  if k == 'smc':
53  key = 'smc'
54  lo, hi = v.split(key)
55  vals = defaults(key, lo=lo, hi=hi)
56  condargs.append((key, vals))
57 
58  # Capitalisation to avoid clash with pure 'jvt' key
59  if k == 'nnJvt':
60  key = 'nnJvt'
61  values = v.split(key)
62  assert values[0]=='','nnJvt condition takes only version post-argument'
63  assert values[1].startswith('v'),'nnJvt condition expects version as post-argument'
64 
65  version_to_name = dict(
66  v1='NNJvtTrkAugV1',
67  )
68 
69  vals = {
70  'min': '', #not used
71  'max': '', #not used
72  'nnJvtName': version_to_name[values[1]]
73  }
74 
75  condargs.append((key, vals))
76 
77  if k == 'jvt':
78  key = 'jvt'
79  values = v.split(key)
80  assert values[1] == '','jvt condition takes only one argument, two were given' # protection when an upper (not supported) cut is requested
81  lo = values[0]
82  vals = defaults(key, lo=lo)
83  condargs.append((key, vals))
84 
85  if k == 'timing':
86  key = 'timing'
87  values = v.split(key)
88  lo, hi = v.split(key)
89  vals = defaults(key, lo=lo, hi=hi)
90  condargs.append((key, vals))
91 
92  if k == 'timeSig':
93  key = 'timeSig'
94  values = v.split(key)
95  lo, hi = v.split(key)
96  vals = defaults(key, lo=lo, hi=hi)
97  condargs.append((key, vals))
98 
99  if k =='clrsel':
100  key = 'clrsel'
101  values = v.split(key)
102  lo = values[0]
103  vals = defaults(key, lo=lo)
104  condargs.append((key, vals))
105  if k == 'bsel':
106  if 'bgnone' in v:
107  key = 'bgnone'
108  values = v.split(key)
109  assert values[1] == '', 'bgn1 condition takes only one argument, two were given'
110 
111  gn1_WPs = {
112  '': float('-inf'),
113  "95": -2.0886,
114  "90": -0.7981,
115  "85": 0.4462,
116  "82": 1.0965,
117  "80": 1.4991,
118  "77": 2.0717,
119  "75": 2.4110,
120  "60": 4.5465,
121  }
122 
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."
124 
125  lo = gn1_WPs[values[0]]
126 
127  vals = {
128  'min': str(lo),
129  'max': '',
130  'cfrac': '0.018',
131  'namePb': 'fastGN120230331_pb',
132  'namePc': 'fastGN120230331_pc',
133  'namePu': 'fastGN120230331_pu',
134  'nameValid': 'TracksForMinimalJetTag_isValid'
135  }
136 
137  condargs.append((k, vals))
138  # GN2x has to go before GN2 in order to avoid ` elif 'bgntwo' in v:` l149 to pass 'bgntwox'
139  elif 'bgntwox' in v:
140  key = 'bgntwox'
141  values = v.split(key)
142  assert values[1] == '','bgntwox condition takes only one argument, two were given'
143 
144  #This dictionary maps the bdips efficiency into the WP cut to be applied to the DIPS output
145  gn2x_WPs = {
146  '': float('-inf'),
147  '79': 3.1077,
148  '86': 2.2998,
149  '91': 1.2486,
150  '96': -0.4298,
151  }
152 
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."
154 
155  lo = gn2x_WPs[values[0]]
156  vals = {
157  'min': str(lo),
158  'max': '',
159  'cfrac': '0.25',
160  'namePb': 'GN2Xv01_phbb',
161  'namePc': 'GN2Xv01_ptop',
162  'namePu': 'GN2Xv01_pqcd',
163  'nameValid': 'TracksForMinimalJetTag_isValid'
164  }
165  condargs.append((k, vals))
166 
167  elif 'bgntwo' in v:
168  key = 'bgntwo'
169  values = v.split(key)
170  assert values[1] == '', 'bgn2 condition takes only one argument, two were given'
171 
172  gn2_WPs = {
173  '': float('-inf'),
174  "95": -2.432,
175  "90": -1.351,
176  "85": -0.150,
177  "82": 0.5105,
178  "80": 0.931,
179  "77": 1.471,
180  "75": 1.832,
181  "60": 4.054,
182  }
183 
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."
185 
186  lo = gn2_WPs[values[0]]
187 
188  vals = {
189  'min': str(lo),
190  'max': '',
191  'cfrac': '0.018',
192  'namePb': 'fastGN220240122_pb',
193  'namePc': 'fastGN220240122_pc',
194  'namePu': 'fastGN220240122_pu',
195  'nameValid': 'TracksForMinimalJetTag_isValid'
196  }
197 
198  condargs.append((k, vals))
199  elif 'bdips' in v:
200  key = 'bdips'
201  values = v.split(key)
202  assert values[1] == '','bdips condition takes only one argument, two were given' # protection when an upper (not supported) cut is requested
203 
204  #This dictionary maps the bdips efficiency into the WP cut to be applied to the DIPS output
205  dips_WPs = {
206  '': float('-inf'),
207  '95': -1.6495,
208  '90': -0.8703,
209  '85': -0.0295,
210  '82': 0.4560,
211  '80': 0.7470,
212  '77': 1.1540,
213  '75': 1.4086,
214  '60': 3.0447,
215  }
216 
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."
218 
219  lo = dips_WPs[values[0]]
220  vals = {
221  'min': str(lo),
222  'max': '',
223  'cfrac': '0.018',
224  'namePb': 'fastDips_pb',
225  'namePc': 'fastDips_pc',
226  'namePu': 'fastDips_pu',
227  'nameValid': 'TracksForMinimalJetTag_isValid'
228  }
229  condargs.append((k, vals))
230 
231  else:
232  raise ValueError(f'btagger {v.split("b")[1]} not supportted')
233 
234  if k == "tausel":
235  key = 'gntau'
236  values = v.split(key)
237  assert values[1] == '' , 'gntau condition takes only one argument, two were given' # protection when an upper (not supported) cut is requested
238 
239  gntau_WPs = \
240  { '': float('-inf')
241  , '90': -0.846
242  , '85': 0.048
243  , '80': 0.693
244  , '75': 1.229
245  }
246 
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."
248 
249  lo = gntau_WPs[values[0]]
250  vals = {
251  'min': str(lo),
252  'max': '',
253  'namePtau': 'fastGNTau20240216_ptau',
254  'namePu': 'fastGNTau20240216_pu',
255  'nameValid': 'TracksForMinimalJetTag_isValid'
256  }
257  condargs.append((k, vals))
258 
259 
260  if k == 'momCuts':
261  from TrigHLTJetHypo.FastReductionAlgToolFactory import jetMoments
262  if 'XX' in v: # several moment cuts are requested
263 
264  # loop over requested moment strings
265  for cutstr in _cuts_from_momCuts(v):
266  for moment in jetMoments: # loop over possible jet moments
267  if moment in cutstr:
268  key='mom{}'.format(moment)
269  lo, hi = cutstr.split(key)
270  vals = defaults(k, lo=lo, hi=hi)
271  vals["moment"] = jetMoments[moment]
272  condargs.append((key, vals))
273  else: # a single moment cut is requested
274  for moment in jetMoments: # loop over possible jet moments
275  if moment in v:
276  key='mom{}'.format(moment)
277  lo, hi = v.split(key)
278  vals = defaults(k, lo=lo, hi=hi)
279  vals["moment"] = jetMoments[moment]
280  condargs.append((key, vals))
281  if k =='pileuprm':
282  key = 'pileuprm'
283  values = v.split(key)
284  if "n" in values[0]:
285  lo=values[0].replace("n","-",1)
286  if "n" in values[1]:
287  hi=values[1].replace("n","-",1)
288  vals = defaults(key, lo=lo, hi=hi)
289  condargs.append((key, vals))
290  return condargs
291 
292 
293 def scenario_simple(chain_parts):
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"""
298 
299  assert chain_parts, 'routing error, module %s: no chain parts' % __name__
300 
301  repcondargs = []
302  filterparams = []
303  filterparam_inds = []
304 
305  ncp = 0
306 
307  # keep track of identical cond_args, which are given the same
308  # clique number.
309  # the C++ code will use the clique number for optimisation of
310  # the calculation of the combinations
311  #
312  # current implementation: condition filter not included.
313  clique_list = []
314  for cp in chain_parts:
315  ncp += 1
316 
317  # get the Condition parameters (cut values) for the
318  # elemental Conditions
319 
320  condargs = get_condition_args_from_chainpart(cp)
321 
322  multiplicity = int(cp['multiplicity'])
323  chainPartInd = cp['chainPartIndex']
324 
325  # no condition filtering
326  filterparam_inds.append(-1) # no Condition filter
327 
328  clique = None
329  try:
330  clique = clique_list.index(condargs)
331  except ValueError:
332  # seen for the first time
333  clique_list.append(condargs)
334  clique = len(clique_list)-1
335 
336  repcondargs.append(RepeatedConditionParams(tree_id = ncp,
337  tree_pid=0,
338  clique=clique,
339  chainPartInd=chainPartInd,
340  multiplicity=multiplicity,
341  condargs=condargs))
342 
343 
344  # treevec[i] gives the tree_id of the parent of the
345  # node with tree_id = i
346  treevec = make_treevec(repcondargs)
347  assert treevec == [0 for i in range(len(chain_parts) + 1)]
348 
349  assert len(repcondargs) == len(filterparam_inds)
350  helper_params = HelperConfigToolParams(treevec=treevec,
351  repcondargs=repcondargs,
352  filterparams=filterparams,
353  filterparam_inds=filterparam_inds)
354 
355  return [helper_params] # a list is one entry per FastReduction tree
replace
std::string replace(std::string s, const std::string &s2, const std::string &s3)
Definition: hcg.cxx:307
vtune_athena.format
format
Definition: vtune_athena.py:14
python.LArMinBiasAlgConfig.int
int
Definition: LArMinBiasAlgConfig.py:59
plotBeamSpotVxVal.range
range
Definition: plotBeamSpotVxVal.py:195
histSizes.list
def list(name, path='/')
Definition: histSizes.py:38
python.scenario_simple.get_condition_args_from_chainpart
def get_condition_args_from_chainpart(cp)
Definition: scenario_simple.py:22
Base_Fragment.defaults
dictionary defaults
This includes now the top quark, the leptons and the bosons.
Definition: GeneratorFilters/share/common/Base_Fragment.py:79
python.make_treevec.make_treevec
def make_treevec(repcondargs)
Definition: make_treevec.py:3
str
Definition: BTagTrackIpAccessor.cxx:11
python.scenario_simple.scenario_simple
def scenario_simple(chain_parts)
Definition: scenario_simple.py:293
python.scenario_simple._cuts_from_momCuts
def _cuts_from_momCuts(momCuts)
Definition: scenario_simple.py:15
python.LArMinBiasAlgConfig.float
float
Definition: LArMinBiasAlgConfig.py:65