Skip to content
Snippets Groups Projects
Commit fce35610 authored by Emanuele Roberto Nocera's avatar Emanuele Roberto Nocera
Browse files

Merged useless class

parent 19c2ac50
Branches
Tags
1 merge request!1581Implemented function to compute asymptotic exponents
This commit is part of merge request !1581. Comments created here will be created in the context of that merge request.
...@@ -123,8 +123,8 @@ def beta_asy(pdf, *, ...@@ -123,8 +123,8 @@ def beta_asy(pdf, *,
return betaGrid return betaGrid
class AsyExponentPlotter(PDFPlotter): class AsyExponentBandPlotter(BandPDFPlotter):
""" Class inherenting from BandPDFPlotter, changing title and ylabel to reflect the effective """ Class inheriting from BandPDFPlotter, changing title and ylabel to reflect the asymptotic
exponent being plotted. exponent being plotted.
""" """
...@@ -141,10 +141,6 @@ class AsyExponentPlotter(PDFPlotter): ...@@ -141,10 +141,6 @@ class AsyExponentPlotter(PDFPlotter):
else: else:
return fr"$\{self.exponent}_a$ for ${parton_name}$" 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',)) alpha_asy_pdfs = collect('alpha_asy', ('pdfs',))
@figuregen @figuregen
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment