10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-12-25 05:43:46 +01:00

Fix a bug when absorption and fluorescences are mixing

This commit is contained in:
Mickaël Véril 2019-12-17 14:22:32 +01:00
parent e5a47f7ed7
commit 295404548b

View File

@ -95,7 +95,8 @@ class dataFileBase(object):
data.molecule=mymolecule data.molecule=mymolecule
data.method=mymethod data.method=mymethod
data.excitations.append(excitationValue(firstState,finst[0],val,type=finst[2],isUnsafe=unsafe)) data.excitations.append(excitationValue(firstState,finst[0],val,type=finst[2],isUnsafe=unsafe))
datalist.append(data) for value in datacls.values():
datalist.append(value)
return datalist return datalist
elif format==Format.COLUMN: elif format==Format.COLUMN:
subtablesindex=list() subtablesindex=list()