From: SourceForge.net <no...@so...> - 2012-11-05 21:20:29
|
Bugs item #1775665, was opened at 2007-08-16 10:57 Message generated for change (Comment added) made by langner You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=819222&aid=1775665&group_id=161285 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Parsers Group: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Adam Tenderholt (atenderholt) Assigned to: Nobody/Anonymous (nobody) Summary: empty mosyms Initial Comment: I have a calculation that doesn't have mosyms parsed at all. I believe it is because I used SCF=QC and it gives a section that starts with 'Orbital Symmetries in SymMO:' before the 'Orbital Symmetries:' section. I still need to generate an appropriate test file. Quick workaround is as follows. On line 328, change if line[1:19] == 'Orbital symmetries' and not hasattr(self, "mosyms"): to if line[1:20] == 'Orbital symmetries:' and not hasattr(self, "mosyms"): Basically this just ignores the incorrect section by checking to make sure the Orbital symmetries is followed immediately by a colon. Adam ---------------------------------------------------------------------- >Comment By: Karol Langner (langner) Date: 2012-11-05 13:20 Message: Just looked at the code and this was fixed at some point in the past. FTR, this was in the Gaussian parser. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=819222&aid=1775665&group_id=161285 |