Skip to content
Snippets Groups Projects

Implemented function to compute asymptotic exponents

Merged Emanuele Roberto Nocera requested to merge asymptotic_exponents into master
1 file
+ 2
6
Compare changes
  • Side-by-side
  • Inline
@@ -123,8 +123,8 @@ def beta_asy(pdf, *,
return betaGrid
class AsyExponentPlotter(PDFPlotter):
""" Class inherenting from BandPDFPlotter, changing title and ylabel to reflect the effective
class AsyExponentBandPlotter(BandPDFPlotter):
""" Class inheriting from BandPDFPlotter, changing title and ylabel to reflect the asymptotic
exponent being plotted.
"""
@@ -141,10 +141,6 @@ class AsyExponentPlotter(PDFPlotter):
else:
return fr"$\{self.exponent}_a$ for ${parton_name}$"
class AsyExponentBandPlotter(BandPDFPlotter, AsyExponentPlotter):
def __init__(self, exponent, *args, **kwargs):
super().__init__(exponent, *args, **kwargs)
alpha_asy_pdfs = collect('alpha_asy', ('pdfs',))
@figuregen
Loading