fix bug on alpha, it should be mass 4

This commit is contained in:
Ryan Tang 2025-02-24 18:37:33 -05:00
parent 5d0181650f
commit e141edfd0c

View File

@ -81,7 +81,7 @@ class IsotopeClass:
if ASym == "h" :
return [3, 2]
if ASym == "a" :
return [3, 2]
return [4, 2]
[A, sym] = self.BreakDownName(ASym)
try:
dudu = self.data[(self.data['symbol']==sym) & (self.data['A']==A)]