Skip to content

Commit

Permalink
Merge branch 'master' into fix_effective_area
Browse files Browse the repository at this point in the history
  • Loading branch information
vuillaut authored Apr 7, 2022
2 parents 5167a08 + 9dbd6ee commit 6027a86
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion ctaplot/gammaboard/gammaboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def load_run_configs(experiment, experiments_directory):
num_showers += row['num_showers'] * row['shower_reuse']
r_config['num_showers'] = num_showers
for col in run_config.colnames:
if col not in ['num_showers', 'detector_prog_start', 'shower_prog_start']:
if col not in ['num_showers', 'detector_prog_start', 'shower_prog_start', 'obs_id']:
try:
assert len(np.unique(run_config[:][col])) == (1 if col != 'run_array_direction' else 2)
except AssertionError:
Expand Down
1 change: 0 additions & 1 deletion ctaplot/plots/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def set_style(style='notebook'):
style: str
'notebook', 'slides' or 'paper'
"""
mpl.rcParams.update(mpl.rcParamsDefault)

style_path = get(f'ctaplot-{style}')
mpl.pyplot.style.use(['seaborn-deep', style_path])
Expand Down
5 changes: 0 additions & 5 deletions share/styles/ctaplot-notebook
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
#### MATPLOTLIBRC FORMAT


## figure ##

figure.dpi : 200


## font ##

text.usetex : False
Expand Down

0 comments on commit 6027a86

Please sign in to comment.