Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit dd88471e authored by ulrich_y's avatar ulrich_y
Browse files

18b: re-introduce smarter kplot

parent 98acb07d
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ import matplotlib.collections
import matplotlib.patches
import numpy as np
from matplotlib import rc
from errortools import *
rc('text', usetex=True)
......@@ -95,3 +96,50 @@ def twopanel(labelx,
errorband(i, ax=ax3)
return fig, axs
def kplot(sigma, labelx='x_e', labelsigma=None,
labelknlo="$K^{(1)}$", labelknnlo="$K^{(2)}$",
show=[0,-1], showk=[1,2]):
if labelsigma is None:
labelsigma = r"$\D\sigma\,/\,\D " + labelx + "$"
kwargs = {
"labelx":"$%s$" % labelx,
"labupleft": labelsigma
}
if type(sigma) != dict:
raise ValueError("kplot takes dicts!")
if "lo" not in sigma:
raise KeyError("kplot: no leading order")
if "nlo" not in sigma:
raise KeyError("kplot: no next-to-leading order")
if "nnlo" in sigma:
orders = ['lo', 'nlo', 'nnlo']
xsec = {
'lo': sigma['lo'],
'nlo': addplots(sigma['lo'], sigma['nlo']),
'nnlo': addplots(
sigma['lo'],
addplots(sigma['nlo'], sigma['nnlo'])
)
}
else:
orders = ['lo', 'nlo']
xsec = {
'lo': sigma['lo'],
'nlo': addplots(sigma['lo'], sigma['nlo'])
}
if 1 in showk:
kwargs['downleft'] = divideplots(sigma['nlo'], sigma['lo'])
if 2 in showk and 'nnlo' in sigma:
kwargs['downright'] = divideplots(sigma['nnlo'], sigma['lo'])
kwargs['upleft'] = [
xsec[orders[i]] for i in show
]
return twopanel(**kwargs)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment