Skip to content

Commit f9c8bc3

Browse files
added space in tex strings (#268)
* Update Pll.py added space in LaTeX code * Update Sll.py added space in LaTeX code * added space after \to in tex output * removed ' ' when constructing tex string
1 parent 4eca6c8 commit f9c8bc3

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

flavio/physics/quarkonium/Pll.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def fct(wc_obj, par,CeGGij=0,CeGGji=0):
6969

7070
# Observable and Prediction instances
7171
_hadr = {
72-
'eta_c(1S)': {'tex': r"\eta_c(1S)\to", 'P': 'eta_c(1S)' },
73-
'eta_b(1S)': {'tex': r"\eta_b(1S)\to", 'P': 'eta_b(1S)' },
72+
'eta_c(1S)': {'tex': r"\eta_c(1S)\to ", 'P': 'eta_c(1S)' },
73+
'eta_b(1S)': {'tex': r"\eta_b(1S)\to ", 'P': 'eta_b(1S)' },
7474
}
7575

7676
_tex = {'ee': r'e^+e^-', 'mumu': r'\mu^+\mu^-', 'tautau': r'\tau^+\tau^-',

flavio/physics/quarkonium/Sll.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ def fct(wc_obj, par,CeGGij=0,CeGGji=0):
6161

6262
# Observable and Prediction instances
6363
_hadr = {
64-
'chi_c0(1P)': {'tex': r"\chi_{c0}(1P)\to", 'S': 'chi_c0(1P)', 'Q': 2./3., },
65-
'chi_b0(1P)': {'tex': r"\chi_{b0}(1P)\to", 'S': 'chi_b0(1P)', 'Q': -1./3., },
66-
'chi_b0(2P)': {'tex': r"\chi_{b0}(2P)\to", 'S': 'chi_b0(2P)', 'Q': -1./3., },
64+
'chi_c0(1P)': {'tex': r"\chi_{c0}(1P)\to ", 'S': 'chi_c0(1P)', 'Q': 2./3., },
65+
'chi_b0(1P)': {'tex': r"\chi_{b0}(1P)\to ", 'S': 'chi_b0(1P)', 'Q': -1./3., },
66+
'chi_b0(2P)': {'tex': r"\chi_{b0}(2P)\to ", 'S': 'chi_b0(2P)', 'Q': -1./3., },
6767
}
6868

6969
_tex = {'ee': r'e^+e^-', 'mumu': r'\mu^+\mu^-', 'tautau': r'\tau^+\tau^-',

flavio/physics/quarkonium/Vll.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@ def fct(wc_obj, par):
123123

124124
# Observable and Prediction instances
125125
_hadr = {
126-
'J/psi': {'tex': r"J/\psi\to", 'V': 'J/psi', 'Q': 2./3., },
127-
'psi(2S)': {'tex': r"\psi(2S)\to", 'V': 'psi(2S)', 'Q': 2./3., },
128-
'Upsilon(1S)': {'tex': r"\Upsilon(1S)\to", 'V': 'Upsilon(1S)', 'Q': -1./3., },
129-
'Upsilon(2S)': {'tex': r"\Upsilon(2S)\to", 'V': 'Upsilon(2S)', 'Q': -1./3., },
130-
'Upsilon(3S)': {'tex': r"\Upsilon(3S)\to", 'V': 'Upsilon(3S)', 'Q': -1./3., },
126+
'J/psi': {'tex': r"J/\psi\to ", 'V': 'J/psi', 'Q': 2./3., },
127+
'psi(2S)': {'tex': r"\psi(2S)\to ", 'V': 'psi(2S)', 'Q': 2./3., },
128+
'Upsilon(1S)': {'tex': r"\Upsilon(1S)\to ", 'V': 'Upsilon(1S)', 'Q': -1./3., },
129+
'Upsilon(2S)': {'tex': r"\Upsilon(2S)\to ", 'V': 'Upsilon(2S)', 'Q': -1./3., },
130+
'Upsilon(3S)': {'tex': r"\Upsilon(3S)\to ", 'V': 'Upsilon(3S)', 'Q': -1./3., },
131131
}
132132

133133
_tex = {'ee': r'e^+e^-', 'mumu': r'\mu^+\mu^-', 'tautau': r'\tau^+\tau^-',

flavio/physics/quarkonium/Vllgamma.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,10 @@ def fct(wc_obj, par,CeFFij=0,CeFFji=0,CeFFtildeij=0,CeFFtildeji=0):
162162
# Observable and Prediction instances
163163
_hadr = {
164164
'J/psi': {'tex': r"J/\psi\to", 'V': 'J/psi', 'Q': 2./3., },
165-
'psi(2S)': {'tex': r"\psi(2S)\to", 'V': 'psi(2S)', 'Q': 2./3., },
166-
'Upsilon(1S)': {'tex': r"\Upsilon(1S)\to", 'V': 'Upsilon(1S)', 'Q': -1./3., },
167-
'Upsilon(2S)': {'tex': r"\Upsilon(2S)\to", 'V': 'Upsilon(2S)', 'Q': -1./3., },
168-
'Upsilon(3S)': {'tex': r"\Upsilon(3S)\to", 'V': 'Upsilon(3S)', 'Q': -1./3., },
165+
'psi(2S)': {'tex': r"\psi(2S)\to ", 'V': 'psi(2S)', 'Q': 2./3., },
166+
'Upsilon(1S)': {'tex': r"\Upsilon(1S)\to ", 'V': 'Upsilon(1S)', 'Q': -1./3., },
167+
'Upsilon(2S)': {'tex': r"\Upsilon(2S)\to ", 'V': 'Upsilon(2S)', 'Q': -1./3., },
168+
'Upsilon(3S)': {'tex': r"\Upsilon(3S)\to ", 'V': 'Upsilon(3S)', 'Q': -1./3., },
169169
}
170170

171171
_tex = {'ee': r'e^+e^-', 'mumu': r'\mu^+\mu^-', 'tautau': r'\tau^+\tau^-',

0 commit comments

Comments
 (0)