Computation of differential cross-sections using Local Unitarity.
See www.alphaloop.ch for details on the theoretical framework and related literature.
See the wiki for more information on the project.
We salute the eagerness of our users.
If you want to jump right in, run the following to immediately start integrating the scalar three-loop mercedes diagram,
git clone https://github.com/alphal00p/gammaloop.git && cd gammaloop
./bin/compile.sh
./bin/gammaloop example/cards/scalar_mercedes.gL
or a one-loop hexagon diagram from the scattering process
./bin/gammaloop examples/cards/physical_1L_AA_AAAA.gL
-
Rust
: v1.77+ You can easily install Rust with this one-liner -
Python3
: v3.11+ (equipped withpip
, and thepython-devel
dependency) -
GNU gcc
: v10+ (notclang
!) -
git
Note: The project has been tested on Linux and MacOS. However, on MacOS, the default clang
compiler is not supported due to lack of libquadmath
support, and GNU gcc
must be installed and setup as default compiler.
Windows users are encouraged to use WSL 2.
pip install gammaloop
gammaloop --build_dependencies
git clone https://github.com/alphal00p/gammaloop.git
cd gammaloop
./bin/compile.sh --release
The relevant binaries will then be in ./bin/
and the gammaloop python module is located at ./python/gammaloop
.
Note: Alternatively, the dependencies can be built within a python virtual environment as follows:
./bin/build_dependencies.sh clean
./bin/build_dependencies.sh with_venv
# From within a `bash` shell, use the command below
source `./bin/gammaloop -venv`
# From within a `fish` shell, use the command below
. (./bin/gammaloop -venv).fish
From within the installation directory of the gammaloop module, which you can cd
into with e.g.:
bash -c 'cd `python -c "import os; import gammaloop; print(os.path.dirname(gammaloop.__file__))"`; pwd'
You can test your gammaLoop
installation by running (incl. only tests with a maximum runtime of 15 seconds):
python -m pytest --max-runtime 15.0
From within the installation directory, run:
/bin/run_tests.sh python
/bin/run_tests.sh rust
There are three entry points to the GammaLoop
functionalities:
-
Preferred method is through the Python command-line interface
gammaloop
. -
Alternatively, the same functionalities can be accessed programmatically, e.g. in a Jupyter notebook, through the Python API, by importing the
gammaloop
library. -
Finally, expert users may also find it useful to steer some of functionalities directly from the rust binary
gammaloop_rust_cli
.
Both executables gammaloop
and gammaloop_rust_cli
are made available as scripts in the bin
directory.
The gammaloop
Python module is also exposed after installation and ready to be imported by custom Python scripts.
GammaLoop
is typically used through the python command-line interface gammaloop
.
Place your list of commands in a file named e.g. cmd.gL
, for instance:
# Content of file 'cmd.gL'
import_model sm --format ufo
export_model ./sm.yaml --format yaml
and run it with:
./bin/gammaloop cmd.gL
You can find more information on the syntax of the available commands in the wiki and by running:
./bin/gammaloop --help
to get an overview of available commands and:
./bin/gammaloop -c "help import_model"
to get help on any specific command.
You can find example of command files in the <MODULE_PATH>/data/run_cards/
directory.
Follow the example jupyter notebook given in example to get started with the Python API.
cd <GAMMALOOP_INSTALLATION_DIRECTORY>/examples/jupyter
jupyter notebook steer_gammaloop.ipynb
All typical usecases of GammaLoop
are available through the Python command-line interface mentioned earlier.
However, expert users might want to steer the Monte-Carlo integration directly using the gammaloop_rust_cli
binary.
This is possible throught the gammaloop_rust_cli
binary, which can be used as follows:
./bin/gammaloop_rust_cli --config <MODULE_PATH>/gammaloop/data/run_cards/rust_run_config.yaml
Note: You have to manually define your desired external momenta in this default rust_run_config.yaml
file.
You will find more information on the content of the run configuration file and steering options in the wiki and by running:
./bin/gammaloop_rust_cli --help