Skip to content
Snippets Groups Projects
Commit a48bebe1 authored by Moritz Huebner's avatar Moritz Huebner
Browse files

Merge remote-tracking branch 'origin/close_figure_after_ifo_plotting' into...

Merge remote-tracking branch 'origin/close_figure_after_ifo_plotting' into close_figure_after_ifo_plotting

# Conflicts:
#	bilby/gw/detector.py
parent aa73f034
No related branches found
No related tags found
No related merge requests found
......@@ -1642,6 +1642,7 @@ class Interferometer(object):
fig.savefig(
'{}/{}_{}_frequency_domain_data.png'.format(
outdir, self.name, label))
plt.close(fig)
def plot_time_domain_data(
self, outdir='.', label=None, bandpass_frequencies=(50, 250),
......@@ -1709,6 +1710,7 @@ class Interferometer(object):
else:
fig.savefig(
'{}/{}_{}_time_domain_data.png'.format(outdir, self.name, label))
plt.close(fig)
@staticmethod
def _hdf5_filename_from_outdir_label(outdir, label):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment