We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abb3b7 commit a2aa631Copy full SHA for a2aa631
src/massTable.cpp
@@ -147,7 +147,13 @@ bool MassTable::readNUBASE(const std::filesystem::path& nubaseTable)
147
148
while (std::getline(file, line))
149
{
150
- if (line.find("non-exist") != std::string::npos)
+ // 2012 table has some (26) lines like this:
151
+ // 168 0630W 168Eu >300ns 12Ku26i 2012
152
+ // B- ?;B-n ?
153
+ // They are theoretical but don't contain a '#' and give no ME value.
154
+ // All of the isotopes seem to come from the same paper, so just ignore it's data for the moment.
155
+ // Sorry whoever you are
156
+ if (line.find("non-exist") != std::string::npos || line.find("12Ku26i") != std::string::npos)
157
158
continue;
159
}
0 commit comments