We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3871aa commit a221976Copy full SHA for a221976
machine_learning_hep/analysis/analyzerdhadrons_mult.py
@@ -370,7 +370,9 @@ def fit(self):
370
for entry in self.cfg("mass_roofit", []):
371
if (lvl := entry.get("level")) and lvl != level:
372
continue
373
- if (ptspec := entry.get("ptrange")) and (ptspec[0] > ptrange[0] or ptspec[1] < ptrange[1]):
+ if (ptspec := entry.get("ptrange")) and (
374
+ ptspec[0] > ptrange[0] or ptspec[1] < ptrange[1]
375
+ ):
376
377
fitcfg = entry
378
break
0 commit comments