Skip to content

Commit c1ef971

Browse files
committed
Correct error in the 2012 nubase table for 198Au
We could modify the raw file, as it's a fairly obvious mistake, but let not. The fix is relatively simple to apply once all data has been parsed.
1 parent 43c816c commit c1ef971

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pynch/mass_table.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ def _combine_all_data(self) -> pd.DataFrame:
107107
df.loc[(df.Symbol == "C") & (df.A == 12), "NubaseRelativeError"] = 0.0
108108
df.loc[(df.Symbol == "C") & (df.A == 12), "AMERelativeError"] = 0.0
109109

110+
# 198Au has a typo in it's decay mode in the 2012 table. It is down as '-'
111+
df.loc[(df.A == 198) & (df.Z == 79) & (df.TableYear == 2012), 'Decay'] = "B-"
112+
110113
return df
111114

112115
def _do_indexing(self) -> None:

0 commit comments

Comments
 (0)