-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconversionchiffre_parti.py
78 lines (69 loc) · 2.23 KB
/
conversionchiffre_parti.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Fri Feb 25 17:20:41 2022
@author: thomasstinglhamber
"""
def name_parti(particule):
"""
Parameters
----------
particule : Nom de la particule.
Returns
-------
Jauge : liste des points en fonction de chaque particule decouvertte.
point : les points de la decouverte.
"""
Col ={0:'Up_quark',
1:'Up_antiquark',
2: 'Down_quark',
3: 'Down_antiquark',
4: 'Strange_quark',
5: 'Strange_antiquark',
6: 'Pion',
7:'Kaon',
8: 'Proton',
9: 'Neutron',
10: 'Phi_Meson',
11: 'Lambda',
12: 'Sigma',
13: 'Delta',
14: 'Charmed_quark',
15: 'Charmed_antiquark',
16: 'Xi',
17: 'D_Meson',
18:'Strange_D_Meson',
19: 'Charmed_Lambda',
20: 'Charmed_Sigma',
21: 'Charmed_Xi',
22: 'Charmed_Omega',
23: 'Charmed_Eta_Meson',
24: 'Double_Charmed_Xi',
25: 'Bottom_quark',
26: 'Bottom_antiquark',
27: 'B_Meson',
28: 'Strange_B_Meson',
29: 'Bottom_Lambda',
30: 'Bottom_Xi',
31: 'Bottom_Sigma',
32: 'Bottom_Omega',
33: 'Upsilon_Meson',
34: 'Top_quark',
35: 'Top_antiquark',
36: 'Double_Bottom_Xi',
37: 'Charmed_Bottom_Xi',
38:'Charmed_Bottom_Omega',
39: 'Double_Charmed_Omega',
40: 'Double_Bottom_Omega',
41: 'Double_Charmed_Bottom_Omega',
42: 'Charmed_Double_Bottom_Omega',
43: 'Charmed_B_Meson'}
name=0
for i in Col:
#print(i)
if i == particule:
#print('ok')
name =Col[i]
break
else : pass
return name