Documentation¶Installation¶To be able to compile the code you need to have the following softwares/libraries installed To compile and install, simply run./install.sh
Code Usage¶The install script installs the Input parameters are passed through a In addition to the desired computational parameters, a file containing the 4F scheme
calculation, corresponding to the desired setup, must be provided,
as this code only computes the massless contribution to the 4F scheme results¶4F scheme results must be provided using the following convention:
separated by a tab character, also the header must be included. As an example we provide the set of tabulated cross sections that were used
for the benchmark presented in chapter IV.2.2.e of the
In order to perform a FONLL-B (NNLL+NLO) calculation three files have to be provided:
Example 4F scheme tables can be found in the Run the script¶To run the code with import sys
sys.path.append('<path_to_bbhfonll>/lib')
sys.path.append('<path_to_bbhfonll>/src/python')
import fonll
calc = fonll.fonll('<path_to_param_card.info>')
res = calc.calc_fonll(125,125,125)
with the order_5f : 2 # order of the 5F calc
order_fonll : 2 # select 1 for fonll-A (LL matching)
mur : 125. # renormalisation scale (central)
muf : 125. # factorisation scale (central)
mh : 125. # mass of the Higgs boson
mb : 4.58 # pole mass of the b-quark
sqrts : 13000. # center of mass energy
iter : 100000 # number of vegas points per iteration
pdf_set : 'PDF4LHC15_nnlo_mc__mb4.58_mub4.58' # pdf set
|