first add

This commit is contained in:
2024-06-10 09:09:10 +08:00
parent 52d5f402bc
commit 8f9fac8bd8
14 changed files with 2042 additions and 0 deletions

13
particle.py Normal file
View File

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