Skip to content
Snippets Groups Projects
Commit 31ce1664 authored by Aaron Viets's avatar Aaron Viets
Browse files

gstlal-calibration: plotting script update

parent b8a3cc11
No related branches found
No related tags found
No related merge requests found
......@@ -691,7 +691,8 @@ for i in range(len(lines)):
MagArray[i] = 100 * (abs(Error) - 1)
PhaseArray[i] = np.angle(Error) * 180 / np.pi
#MagArray[i] = np.arange(-8, 8.00000001, 16 / (len(fvec) - 1))
#PhaseArray[i] = np.arange(-4, 4.00000001, 8 / (len(fvec) - 1))
# Save data
np.savetxt("%s_approxKappasErrorMagArray_%d-%d.txt" % (ifo, int(tstart), int(dursec)), MagArray)
np.savetxt("%s_approxKappasErrorPhaseArray_%d-%d.txt" % (ifo, int(tstart), int(dursec)), PhaseArray)
......@@ -700,11 +701,11 @@ np.savetxt("%s_approxKappasErrorFrequency_%d-%d.txt" % (ifo, int(tstart), int(du
# Make plots
realtstart = datetime.datetime.utcnow().replace(tzinfo=datetime.timezone.utc).timestamp()
fig = plt.figure()
gs = gridspec.GridSpec(nrows, 1, hspace = 0.2)
gs = gridspec.GridSpec(nrows, 1, hspace = 0.15)
#fig, ax = plt.subplots(2 * nrows, 1)
for i in range(nrows):
gs0 = gridspec.GridSpecFromSubplotSpec(2, 1, subplot_spec = gs[i], hspace = 0.05)
gs0 = gridspec.GridSpecFromSubplotSpec(2, 1, subplot_spec = gs[i], hspace = 0.1)
magax = fig.add_subplot(gs0[0])
phaseax = fig.add_subplot(gs0[1])
......
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