NNLOJET manual
3 The NNLOJET framework
The NNLOJET code is a parton-level event generator that provides the framework for the implementation of jet production processes to NNLO accuracy in QCD, using the antenna subtraction method. It contains the event generator infrastructure (Monte Carlo phase-space integration, event handling and analysis routines) and provides the unintegrated and integrated antenna functions and the phase-space mappings for all kinematic configurations. The NNLOJET phase-space integration is based on optimized parametrizations of the respective subprocess phase spaces (described in detail in [20]), which are then integrated using the adaptive Monte Carlo routine VEGAS [21].
The implementation of processes in the NNLOJET framework requires the availability of the matrix elements for all RR, RV, and VV contributions, as well as the construction of the antenna subtraction terms. The subtraction terms have been validated by verifying their point-wise convergence to the respective subprocess matrix elements in all limits, as described in detail in [18, 22]. Some of the one-loop subprocess matrix elements were taken from the MCFM code [23], in particular for processes involving vector bosons [24]. The two-loop virtual corrections to all processes with four-point kinematics or beyond contain various special functions, in particular harmonic polylogarithms [25] and their generalizations. These are evaluated using HPLOG [26], TDHPL [27] and CHAPLIN [28], which are all included as part of the NNLOJET distribution. The evaluation of parton distributions and of the strong coupling constant is performed using the standard LHAPDF [29] interface.
3.1 External dependencies
The NNLOJET code is mainly written in modern Fortran with some modules, dependencies and driver files written in C++ and Python. Multi-threading capabilities are supported through OPENMP. The NNLOJET installation requires compilers for Fortran/C/C++, a Python 3 interpreter (minimum version 3.10), as well as CMake (minimum version 3.18) to be available on the system. In addition, LHAPDF 6 [29] must be present, ideally with the lhapdf-config executable searchable from the $PATH of the system. The user is responsible for downloading the necessary PDF sets to be used in the calculation.
3.2 Installation
The source files can be downloaded from https://nnlojet.hepforge.org as a tarball, which unpacks into a directory nnlojet-X.Y.Z. The following commands are then used to build NNLOJET:
$ cd nnlojet-X.Y.Z $ mkdir build $ cd build $ cmake .. [options] $ make [-jN] $ make install
The compilation can be run on N cores in parallel with the -jN optional argument. The installation can be customised, by passing additional [options] to the cmake command. The syntax is -D <var>=<value> . The most relevant options are:
-
•CMAKE_INSTALL_PREFIX=/path/to/nnlojet : target directory where to install NNLOJET (default: /usr/local);
-
•CMAKE_BUILD_TYPE=Debug|Release|RelWithDebInfo|MinSizeRel : build option for NNLOJET (default: Release);
-
•LHAPDF_ROOT_DIR=/path/to/LHAPDF : CMake will attempt to find the library automatically but the path can be supplied manually;
-
•Python3_ROOT_DIR=/path/to/python : CMake will attempt to find a python installation automatically but the path can be supplied manually;
-
•DOKAN=ON|OFF : optionally skip the installation of the nnlojet-run script (default: ON);
-
•OPENMP=ON|OFF : enable OpenMP support (default: OFF).
After successful completion of the build and installation, the NNLOJET executable will be located at /path/to/nnlojet/bin/NNLOJET . It is recommended to add the location of the NNLOJET bin directory to the system $PATH variable.
For system-dependent settings (e.g. compiler preferences and options) the user should consult the cmake documentation.
3.3 Usage of NNLOJET
The recommended running mode of NNLOJET is through the Python workflow described in Section 6, which will launch the NNLOJET executable. The process selection, parameter input and output control of NNLOJET are steered through a plain-ASCII runcard file. With this file, NNLOJET can also be launched manually from the command line:
$ NNLOJET --run <runcard>
The NNLOJET executable further offers the optional command-line flags:
--help - display command line options --iseed - override the seed number of the runcard --imember - override the PDF member of the runcard --listprocs - query all available processes --listobs <process> - display list of valid observables
NNLOJET uses dynamical libraries to load individual processes and initializes many parts of the computational setup at runtime. As a result, the process to be considered, observable selectors and histograms can be specified directly in the runcard in a flexible way without requiring the re-compilation of the code. Any dimensionful parameter is given in units of \([\mathrm {GeV}]\). Cross sections outputs are in \([\mathrm {fb}]\).
Complete examples for runcards are provided together with reference output on the NNLOJET webpage https://nnlojet.hepforge.org/examples.html.