Skip to content
Snippets Groups Projects
Commit 397d6726 authored by Christoph Heidecker's avatar Christoph Heidecker
Browse files

* minor changes

parent b5064a4a
Branches
No related tags found
No related merge requests found
......@@ -61,3 +61,6 @@ class InputData:
def copy60topas(self):
pass
def higgs60topas(self):
pass
\ No newline at end of file
......@@ -95,7 +95,6 @@ def plot_2d_line(x_array_list, y_array_list, label_list, title='', x_label='', y
set_general_style(n_colors=len(x_array_list))
color_map = plt.rcParams['axes.prop_cycle'].by_key()['color']
print(color_map)
fig, ax1 = plt.subplots()
for index, (x, y) in enumerate(zip(x_array_list, y_array_list)):
......@@ -156,7 +155,6 @@ def plot_2d_error(x_array_list, y_array_list, x_std_array_list, y_std_array_list
for index, (x, y, x_std, y_std, marker_style) in enumerate(zip(x_array_list, y_array_list, x_std_array_list, y_std_array_list, style)):
if marker_style=='line':
print('line!!!')
plt.plot(x, y, label=label_list[index], marker='', markersize='10', linestyle='-', linewidth=4, alpha=1.0)
else:
plt.errorbar(x, y, xerr=x_std, yerr=y_std, label=label_list[index], fmt='o', alpha=1.0)
......
......@@ -40,3 +40,5 @@ class Prediction:
self.cache_rate_per_node = 1000 # Cache speed in MB/s
self.workflow_rate_max = 2000 # Maximum speed the workflow allows per core
def higgs60topas(self):
pass
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment