Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tutorials/hist/hist001_TH1_fillrandom_uhi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
## \notebook
## Fill a 1D histogram with random values using predefined functions.
##
## \macro_image
## \macro_code
##
## \date July 2025
Expand Down
1 change: 0 additions & 1 deletion tutorials/hist/hist002_TH1_fillrandom_userfunc_uhi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
## \notebook
## Fill a 1D histogram from a user-defined parametric function.
##
## \macro_image
## \macro_code
##
## \date July 2025
Expand Down
1 change: 0 additions & 1 deletion tutorials/hist/hist003_TH1_draw_uhi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
##
## \note When using graphics inside a ROOT macro the objects must be created with `new`.
##
## \macro_image
## \macro_code
##
## \date July 2025
Expand Down
1 change: 0 additions & 1 deletion tutorials/hist/hist007_TH1_liveupdate_uhi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
## \notebook -js
## Simple example illustrating how to use the C++ interpreter.
##
## \macro_image
## \macro_code
##
## \date July 2025
Expand Down
1 change: 0 additions & 1 deletion tutorials/hist/hist010_TH1_two_scales_uhi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## with different scales in the "same" pad.
## Inspired by work of Rene Brun.
##
## \macro_image
## \macro_code
##
## \date July 2025
Expand Down
2 changes: 0 additions & 2 deletions tutorials/hist/hist015_TH1_read_and_draw_uhi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
## \notebook -js
## A Simple histogram drawing example.
##
## \macro_image
## \macro_output
## \macro_code
##
## \date July 2025
Expand All @@ -13,7 +11,7 @@
import matplotlib.pyplot as plt
import mplhep as hep
import numpy as np
import ROOT

Check failure on line 14 in tutorials/hist/hist015_TH1_read_and_draw_uhi.py

View workflow job for this annotation

GitHub Actions / ruff

ruff (F401)

tutorials/hist/hist015_TH1_read_and_draw_uhi.py:14:8: F401 `ROOT` imported but unused help: Remove unused import: `ROOT`
from ROOT import TFile, gROOT

mpl_fig = plt.figure(figsize=(14, 12))
Expand Down
Loading