Skip to content
Snippets Groups Projects
Commit e92d6a3d authored by Matthijs van der Wild's avatar Matthijs van der Wild
Browse files

Merge branch 'fix-h5parm-compare' into 'master'

Corrected typo: control_soltabval.<soltabname>.val now contains the actual control soltab data

See merge request eosc/prefactor3-cwl!45

Former-commit-id: 2a695f2d
Former-commit-id: 47abfdb7
parents 7be2c830 95125021
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ def main(check, control):
with open("check_soltab.{}.val".format(soltabname), "w") as f:
f.write(str(check_soltabval[:]))
with open("control_soltab.{}.val".format(soltabname), "w") as f:
f.write(str(check_soltabval[:]))
f.write(str(control_soltabval[:]))
else:
print("Val array of soltab {} matches the control".format(soltabname))
check_h5.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment