Skip to content
Snippets Groups Projects
Commit be3f9650 authored by Chad Hanna's avatar Chad Hanna
Browse files

gstlal_inspiral_lvalert_sngls_plotter: make the heat map bins a bit larger

parent 8a7e9589
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ for n,ifo in enumerate(["H1", "L1"]):
snrs[ifo] = numpy.array([r.snr for r in sngl if r.ifo == ifo])
chisqs[ifo] = numpy.array([r.chisq for r in sngl if r.ifo == ifo])
mchirps[ifo] = numpy.array([mchirp(r.mass1, r.mass2) for r in sngl if r.ifo == ifo])
ba[ifo] = rate.BinnedArray(rate.NDBins((rate.LinearBins(-600,600,1201), rate.LogarithmicBins(minmchirp, maxmchirp, 200))))
ba[ifo] = rate.BinnedArray(rate.NDBins((rate.LinearBins(-600,600,401), rate.LogarithmicBins(minmchirp, maxmchirp, 100))))
ba[ifo].array[:] = 4.0
for t,s,m in zip(times[ifo], snrs[ifo], mchirps[ifo]):
if ba[ifo][t, m] < s:
......
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