Files
particle_analyse/particle.py
2024-06-10 09:09:10 +08:00

14 lines
189 B
Python

# particle.py
import enum
class ParticleType(enum.Enum):
NeutralHadron = 0
Photon = 1
Electron = 2
Muon = 3
Pion = 4
ChargedKaon = 5
Proton = 6
Others = 7