Skip to content

Add nuclei table #20

@tamasgal

Description

@tamasgal

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions