The SciKit-HEP guys also offer a nuclei table: https://github.com/scikit-hep/particle/blob/master/src/particle/data/nuclei2020.csv
We should add that.
The Python package particle combines everything into a single dataset, so that you can search via
from particle import Particle
Particle.findall() # lists >6400 particles, including nuclei
I think we should put those in nuclei() or so, but I am not sure, since that makes things a bit more complicated when searching for a particle. We could however also do something like
isnuclei(p::Particle) = ... #
nuclei() = filter(isnuclei, particles())
but this will re-execute the filter every time.
The SciKit-HEP guys also offer a nuclei table: https://github.com/scikit-hep/particle/blob/master/src/particle/data/nuclei2020.csv
We should add that.
The Python package
particlecombines everything into a single dataset, so that you can search viaI think we should put those in
nuclei()or so, but I am not sure, since that makes things a bit more complicated when searching for a particle. We could however also do something likebut this will re-execute the
filterevery time.