Skip to content
Snippets Groups Projects
Commit 7f7f9283 authored by chad.hanna's avatar chad.hanna Committed by Kipp Cannon
Browse files

gstlal_ll_dq: improve tmp file use

parent 101f382d
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,8 @@ class PSDHandler(simplehandler.Handler):
return Gst.FlowReturn.OK
def to_hdf5(self, path, datadict):
tmppath = path + ".tmp"
tmppath = "/dev/shm/%s" % path.replace("/","_") + ".tmp"
print tmppath
f = h5py.File(tmppath, "w")
for k, v in datadict.items():
f[k] = v
......
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