Skip to content

Commit

Permalink
Fixed typo output label
Browse files Browse the repository at this point in the history
  • Loading branch information
abelcarreras committed Oct 5, 2017
1 parent 1528f16 commit 5f8c1dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion montemodes/functions/reading.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def write_result_trajectory(trajectory, file_name, type='xyz'):
def write_result_to_file(result, file_name):
result_file = open(file_name, 'w')

result_file.write('#Energy(current)\tEnergy(on test)\tAcceptation\tcv\n')
result_file.write('#Energy(current)\tAcceptation\tcv\n')
for i, j, k in zip(result.energy, result.acceptation_ratio_vector, result.cv):
result_file.write("{0:10.4f}\t{1:5.4f}\t{2:5.4e} \n".format(i, j, k))

Expand Down

0 comments on commit 5f8c1dd

Please sign in to comment.