Commit 8a4b832e authored by Peter Jansweijer's avatar Peter Jansweijer

result filename takes base name.

parent 11a3bcbe
......@@ -374,7 +374,7 @@ if __name__ == "__main__":
# name is the root file name. Get the directory where this file exists and
# open a "result.txt" file in this directory
result_file = open(os.path.join(os.path.dirname(name), "result.txt"),"w")
result_file = open((name + "_result.txt"),"w")
result_file.write("file: Lambda 1, Lambda 2, CRTT(Lambda_1), CRTT(Lambda_2), Fixed Lambda, Alpha, Alpha SPEC format, Alpha StdDev, Alpha/Alpha_StdDev\n")
for key,value in data_set["_l1_a"].items():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment