In the context of the PDF4LHC benchmarking exercise, I've realised that there is something that I don't understand with the luminosity plots generated with validphys. If I plot the 1D gg luminosity for sqrts=14 TeV I obtain different results w.r.t. those obtained with APFELweb. I attach the plots obtained with APFELweb and with validphys.
lumi_APFEL.pdflumi_validphys.pdf
I think that the APFELweb result is correct because if I write a small python script by scratch I indeed obtain that the ordering of the ratios around mH is NNPDF31>MSHT20~CT18NNLO (as in the APFELweb plot) - while it's the other way around in the validphys plot. May this be a bug? Note that this is important, because all the luminosity plots in the NNPDF4.0 paper may be affected.
Designs
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related.
Learn more.
@scarrazza Would it be possible to make the NNPDF4.0 sets available in APFELweb? If I try to upload the NNPDF40_nnlo_as_01180 grid I receive an error message about disk space issues. Thanks.
I think that my question is why the APFELweb and validphys output differ. That being said, here's the python script (I was asked to compute the lumi at mH, so it returns only one value). Note that the luminosity definition used differs from the standard one by a PDF-independent kinematic factor, which however cancels out when luminosity ratios are taken into account.
import lhapdf as lhimport scipy.integrate as integratepdfset = ["NNPDF40_nnlo_as_01180", "NNPDF31_nnlo_as_0118", "MSHT20nnlo_as118", "CT18NNLO"]mH = 125.5 #GeVsqrts = 14000 # GeVtau = mH * mH / ( sqrts * sqrts )x_min = taux_max = 1.0lh.setVerbosity(0)for iset in pdfset: lumi = 0. p = lh.mkPDF(iset,0) f = lambda x1: 1/x1 * p.xfxQ(21, x1, mH) * p.xfxQ(21, tau/x1, mH) lumi = integrate.quad(f, x_min, x_max, epsrel=0.05, limit=10)[0] print(iset, lumi) if iset=="NNPDF40_nnlo_as_01180" or iset=="NNPDF31_nnlo_as_0118": lumi = 0. for irep in range(1,100,1): p = lh.mkPDF(iset,irep) lumi = lumi + integrate.quad(f, x_min, x_max, epsrel=0.05, limit=10)[0] print(iset,lumi/100)
If I do this, I indeed obtain the attached plot, which is similar to the APFELweb one (and the correct one, I believe) modulo improving the smoothness of the integration.
gglumi_corrected.pdf
The lumi 1d values in vp look wrong (they are not symmetric under x1 -> x2, i ->j and also not what that paper says). But I get the impression that that 2d version of evaluate_luminosity should be symmetric.
The paper I'm referring to (https://arxiv.org/pdf/1607.01831.pdf) is the one we cite in the NNPDF3.1 paper. In the NNPDF4.0 paper we don't cite any reference for the luminosity expressions.
BTW, I think that Eq.(2) in https://arxiv.org/pdf/1607.01831.pdf (the 2D luminosity) makes sense. I also believe that Eq.(3) (the 2D luminosity integrated) makes sense as well. And Eq.(3) is equivalent to Eq.(1) (after working out some simple algebra).