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

gstlal_inspiral_mass_model: divide by len single inspiral table to normalize

parent 2bea3571
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ for row in sngl_inspiral_table:
coefficients = numpy.zeros((1, 1, max(ids)+1), dtype=float)
for tid in ids:
coefficients[0,0,tid] = numpy.log(ids[tid])
coefficients[0,0,tid] = numpy.log(ids[tid] / len(sngl_inspiral_table))
#print coefficients.max()
#import matplotlib
......
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