14 lines
189 B
Python
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
|