From e141edfd0c73493e07455ae7f0aa80e5370dc7a1 Mon Sep 17 00:00:00 2001 From: "Ryan@SOLARIS_testStation" Date: Mon, 24 Feb 2025 18:37:33 -0500 Subject: [PATCH] fix bug on alpha, it should be mass 4 --- Cleopatra/IAEANuclearData.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cleopatra/IAEANuclearData.py b/Cleopatra/IAEANuclearData.py index a09100f..928979d 100644 --- a/Cleopatra/IAEANuclearData.py +++ b/Cleopatra/IAEANuclearData.py @@ -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)]