Skip to content
Snippets Groups Projects
Commit 1dd24a80 authored by Mads M. Pedersen's avatar Mads M. Pedersen
Browse files

added missing structure_eigenanalysis_file_name to output_files

parent 4b4e24f1
No related branches found
No related tags found
No related merge requests found
......@@ -194,6 +194,10 @@ class HTCFile(HTCContents, HTCDefaults):
f = self.new_htc_structure.system_eigenanalysis[0]
files.append(f)
files.append(os.path.join(os.path.dirname(f), 'mode*.dat').replace("\\", "/"))
if 'structure_eigenanalysis_file_name' in self.new_htc_structure:
f = self.new_htc_structure.structure_eigenanalysis_file_name[0]
files.append(f)
files.append(os.path.join(os.path.dirname(f), 'mode*.dat').replace("\\", "/"))
files.extend(self.res_file_lst())
for key in [k for k in self.contents.keys() if k.startswith("output_at_time")]:
......
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