Skip to content

Commit

Permalink
make ruff happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor-Schwan committed Oct 15, 2024
1 parent 7104691 commit b58cdcb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions utils/material_plots_2D.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,12 @@ def main():
ROOT.gROOT.SetBatch(1)

h_x0 = create_histogram("h_x0", args.angleMin, args.angleMax, args.angleBinning, args.nPhiBins)
h_lambda = create_histogram("h_lambda", args.angleMin, args.angleMax, args.angleBinning, args.nPhiBins)
h_depth = create_histogram("h_depth", args.angleMin, args.angleMax, args.angleBinning, args.nPhiBins)
h_lambda = create_histogram(
"h_lambda", args.angleMin, args.angleMax, args.angleBinning, args.nPhiBins
)
h_depth = create_histogram(
"h_depth", args.angleMin, args.angleMax, args.angleBinning, args.nPhiBins
)

for angleBinning, entry in enumerate(tree):
nMat = entry.nMaterials
Expand Down

0 comments on commit b58cdcb

Please sign in to comment.