Skip to content
Snippets Groups Projects
Commit 1d68a2ce authored by ChiWai Chan's avatar ChiWai Chan
Browse files

gstlal_inspiral_plot_rankingstats_horizon: removes the limits on the horizon...

gstlal_inspiral_plot_rankingstats_horizon: removes the limits on the horizon distances since doing so loses the details of each individual plot.
parent c41afb52
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
......@@ -63,8 +63,6 @@ for f in files:
urls.append(f)
outdir = Path(options.outdir)
tasks = {}
gmaxh = -1e32
for key, group in groupby(sorted(urls, key = lambda x: CacheEntry.from_T050017(x).description), lambda x: CacheEntry.from_T050017(x).description):
rankfiles = list(group)
ce = CacheEntry.from_T050017(rankfiles[0])
......@@ -74,10 +72,4 @@ for key, group in groupby(sorted(urls, key = lambda x: CacheEntry.from_T050017(x
duration = ce.segment[1] - ce.segment[0]
output = outdir / f"{ce.observatory}-{desc}-{start}-{duration}.{options.format}"
horizon_distance = horizon.HorizonDistance.from_rankingstats(rankfiles, verbose = options.verbose)
tasks[horizon_distance] = [output, title]
# update global max horizon distance
gmaxh = max(horizon_distance.max, gmaxh)
# save figure
for horizon_distance, args in tasks.items():
horizon_distance.savefig(args[0], figsize = options.fig_size, limits = [0.001, gmaxh*1.05], title = args[1])
horizon_distance.savefig(output, figsize = options.fig_size, title = title)
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