nnlojet is hosted by Hepforge, IPPP Durham
nnlojet is hosted by Hepforge, IPPP Durham

Quick start

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 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.

Installing NNLOJET

The source files can be downloaded from the release page as a tarball, which unpacks into a folder nnlojet-X.Y.Z. To build NNLOJET requires the following commands: $ cd nnlojet-X.Y.Z
$ mkdir build
$ cd build
$ cmake ..
$ make [-jN]
$ make install
Compilation can be run in parallel on N cores with the -jN optional argument.

After successful completion of the build and installation, the NNLOJET executable will be located at: nnlojet-X.Y.Z/install/bin/NNLOJET. It is recommended to add the location of the NNLOJET bin folder to the system $PATH variable.

The cmake command can be invoked with additional options using -D <var>=<value> to control the build process:

  • CMAKE_BUILD_TYPE=Debug|Release|RelWithDebInfo|MinSizeRel:
    choose how to build 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 dokan workflow script nnlojet-run (default: ON);
  • OPENMP=ON|OFF:
    enable OpenMP support (default: OFF).

For system-dependent settings (e.g. compiler preferences and options) the user should consult the cmake documentation for details. The ccmake command offers a GUI to access such additional settings.

Using NNLOJET

The recommended running mode of NNLOJET is through the Python workflow described in Section 6 of the manual. The process selection, parameter input and output control of NNLOJET are steered through a plain-ASCII runcard file. Example runcards can be found either in the example folder of the NNLOJET tarball or on the examples page.

Let's calculate NLO predictions for the Drell-Yan process, with settings as specified in the exampleZ.run runcard. We first run the init subcommand of the nnlojet-run executable to initialise a new run folder with the necessary input and configuration files: $ nnlojet-run init exampleZ.run
The command should create a new folder with name example_run_Z_8TeV (as then RUN name specified in the input runcard). The init command will first display the relevant references for the selected process that should be cited in a scientific publication using results obtained from the NNLOJET calculation; these references will also be saved as .tex and .bib files in the run folder. Subsequently, the user will be prompted to set several configuration options that are necessary for the execution. Here we choose local as policy, nlo as order and 0.1 as target relative accuracy, while leaving all the other options with their default values.

The main calculation can then be triggered using the submit subcommand: $ nnlojet-run submit example_run_Z_8TeV --job-max-runtime 5m
where we have overridden temporarily the job-max-runtime variable with the CLI option, to limit the maximum runtime for an individual job to 5 minutes.

Once the submit sub-command is executed, the workflow is started and the process remains active for the entirety of the calculation, spawning sub-processes to execute the core NNLOJET program. The full calculation is divided into separate components and further decomposed into independent partonic luminosities. On a laptop with 8 cores, it should take around 15 minutes.

Upon termination of all jobs, a summary of the calculation is given by printing the final cross section number with its associated uncertainty. The final results of the calculation are saved to the example_run_Z_8TeV/results/final folder. For instance, the example_run_Z_8TeV/result/final/lo.cross.dat contains the LO fiducial cross section and example_run_Z_8TeV/result/final/nlo.cross.dat the NLO one. The result should be:

  • LO: 9.82(9) x 10^5 [fb]
  • NLO: 1.14(1) x 10^6 [fb]

(NNLOJET adopts standard units of [fb] for cross sections and [GeV] for dimensionful quantities).

Within this example runcard, some histograms are additionally computed. For instance, example_run_Z_8TeV/result/final/nlo.mll.dat contains the invariant mass distribution of the lepton pair at NLO: the first three columns are the lower bound, the center, and the upper bound of the bin; the fourth and fifth columns represent the value and the associated Monte Carlo integration uncertainty for the central scale choice. In the remaining columns, results for the other scale choices specified in the SCALES block of the runcard are provided.