aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2019-07-29 12:51:02 -0500
committertlatorre <tlatorre@uchicago.edu>2019-07-29 12:51:02 -0500
commit9d887546b89c1a1534782471176e2313ecf6f223 (patch)
treeaa829d6d7d35d628ec8a092fbc8610feab538f4a /src
parenta0c02b69c718b90b902f2445ce47c5fb1d55767e (diff)
downloadsddm-9d887546b89c1a1534782471176e2313ecf6f223.tar.gz
sddm-9d887546b89c1a1534782471176e2313ecf6f223.tar.bz2
sddm-9d887546b89c1a1534782471176e2313ecf6f223.zip
update run-fit to write output files with suffix hdf5
Diffstat (limited to 'src')
-rwxr-xr-xsrc/run-fit2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run-fit b/src/run-fit
index 203aa59..d309cd3 100755
--- a/src/run-fit
+++ b/src/run-fit
@@ -6,7 +6,7 @@ from os.path import splitext, split
def run_fit(filename):
head, tail = split(filename)
root, ext = splitext(tail)
- output = root + '.txt'
+ output = root + '.hdf5'
cmd = ["./fit", filename, "-o", output]
subprocess.call(cmd)