Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vkucera committed Oct 7, 2024
1 parent 8cb39c5 commit 8ef1563
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion machine_learning_hep/plotting/plot_jetsubstructure_run3.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def __init__(self, path_input_file: str, path_database_analysis: str, typean: st
self.l_monash = 2
self.l_mode2 = 7

self.path_results_other = "/home/vit/Dokumenty/ALICE/Prace/HF_jets/Run3/mlhep/hp_results/preliminary/data"
self.path_results_other = "$HOME/mlhep"

def cfg(self, param, default=None):
return reduce(
Expand Down
4 changes: 2 additions & 2 deletions machine_learning_hep/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def get_y_window_his(l_his: list, with_errors=True, range_x=None):
return y_min, y_max


colours = [
colours_default = [
kBlue,
kRed,
kGreen + 1,
Expand Down Expand Up @@ -569,7 +569,7 @@ def get_colour(i: int, scheme=1):
elif scheme == 2:
list_col = colours_alice_syst
else:
list_col = colours
list_col = colours_default
return list_col[i % len(list_col)]


Expand Down

0 comments on commit 8ef1563

Please sign in to comment.