Updated pipeline to run on the **pre_summer2026** production#524
Open
selvaggi wants to merge 10 commits into
Open
Updated pipeline to run on the **pre_summer2026** production#524selvaggi wants to merge 10 commits into
selvaggi wants to merge 10 commits into
Conversation
…mtof mass cuts aren't defeated by ::abs(int) under gcc14
Removed the model section from the README file.
kjvbrt
reviewed
Jul 21, 2026
| plt.rcParams["font.family"] = "STIXGeneral" | ||
| plt.rcParams["axes.labelweight"] = "bold" | ||
| ## LaTeX rendering (needs latex on PATH, e.g. the LCG texlive) | ||
| plt.rc("text", usetex=True) |
Contributor
There was a problem hiding this comment.
usetex=True shells out to LaTeX for every string; if latex isn't on PATH (not guaranteed across stack releases/CI), it hard-fails with a cryptic matplotlib error. I would suggest an upfront check with a clear message:
import shutil, sys
if not shutil.which("latex"):
sys.exit("ERROR: latex not found on PATH (needed for usetex rendering, e.g. via LCG texlive)")
Contributor
Author
There was a problem hiding this comment.
Made it conditional: it now uses latex only if shutil.which("latex") finds it, else falls back to default styling with a note (no crash).
Contributor
|
Hi @selvaggi, otherwise it looks ok to me :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ported the weaver example to the 7-class (g/u/d/s/c/b/τ) tagger and validated pipeline run on the pre_summer2026 production.
std::absinJetConstituentsUtilsfixes electron, muon multiplicity.Validated against winter2023 at ~1M jets/flavour: tagger ROCs and input features, including the now-fixed dz in Delphes TrackCovariance computation.