while I found in some cases (eg. 64As(halfLife 69ms)) my code failed to get the mass because gElementRN is nothing but a null pointer.
Do you know is there any other way to get the mass?
Thank you for your post.
Could you please share a minimal and complete example that shows the problem you described? That would help us to reproduce and investigate your issue.
double gEle(short a = 64, short z = 33) {
if (!gGeoManager) {
new TGeoManager("geom", "Global Geometry Manager"); // Create the required manager
}
TGeoElementTable* gElementTable = gGeoManager->GetElementTable();
if (!gElementTable) return std::numeric_limits<double>::quiet_NaN();
TGeoElementRN* gElementRN = gElementTable->GetElementRN(a, z);
if (!gElementRN) return std::numeric_limits<double>::quiet_NaN();
return gElementRN->MassEx();
}
if I execute command for nuclide 64Ge root -l 'gEle.c(64,32)' it gives the mass excess -54.425000 correctly, while for 64As(command root -l 'gEle.c(64,33)') it failed to give the mass excess despite it’s already known(Arsenic-64 - isotopic data and properties).
I found that the atmoic mass table which root framework is ultlizing is not AME2016 or AME2020(AMDC - Atomic Mass Data Center) but AME1993(paper Redirecting).
A lot new nuclides found after AME1993, and some updates were made to the existing nuclides.