cres

This crate implements the cell resampling algorithm for the elimination of negative weights in Monte Carlo collider event samples. The algorithm is described in

Unbiased Elimination of Negative Weights in Monte Carlo Samples\ J. Andersen, A. Maier\ arXiv:2109.07851

Efficient negative-weight elimination in large high-multiplicity Monte Carlo event samples\ Jeppe R. Andersen, Andreas Maier, Daniel MaƮtre\ arXiv:2303.15246

Installation

If Rust and Cargo are installed on your system, run

cargo install cres

Precompiled executables are available on hepforge.

To install the development version, clone this repository and run

cargo install --path path/to/local/cres/repository

To generate shell command completion, run

cres-generate-shell-completion SHELL

For bash and fish, command completion should work upon the next login. For other shells, the completion code is written to standard output. Consult your shell's documentation if you are unsure what to do with it. To list the supported shells, run

cres-generate-shell-completion --help

Usage

The basic usage is

cres -a JETALGO -R JETR --jetpt JETPT --max-cell-size R -o OUT.HEPMC2 IN.HEPMC2

This takes a file IN.HEPMC2 (or several files) in hepmc2 or Les Houches Event format with mixed-weight events and produces a file OUT.HEPMC2 with a smaller contribution from negative weights. The input file can be compressed with bzip2, gzip, zstd, or lz4.

We recommend to set the jet algorithm JETALGO, jet radius JETR, and minimum jet transverse momentum JETPT to the same values that were used to generate the input events. The supported jet algorithms are anti-kt, kt, and Cambridge-Aachen.

Setting a maximum cell radius R is optional, but highly recommended. Lower values lead to much faster resampling and smaller smearing effects. Larger values eliminate a larger fraction of negative weights. It is recommended to start with a value between 1 and 10 and adjust as needed.

Options

To see a full list of options with short descriptions run

cres --help

The most important options are

There are too many options

To avoid cluttering the command line, options can be saved in an argfile. Each line should contain exactly one option, and option name and value have to be separated by '='. For example:

--jetalgorithm=anti-kt --jetradius=0.4 --jetpt=30

The argfile can be used like this:

cres @argfile -o OUT.HEPMC2 IN.HEPMC2

Environment variables

The CRES_LOG environment variable allows fine-grained control over the command line output. For example, to see the debugging output of the jet clustering, set

CRES_LOG=jetty=debug,cres=info

See the env_logger crate for a comprehensive documentation.

By default, cres uses as many cores as possible. For small event samples, limiting the number of threads can be faster. You can set the number of threads with the --threads command line option or with the RAYON_NUM_THREADS environment variable.

Support for ntuple files

To read and write ROOT ntuple files, ROOT has to be installed and root-config has to be in the executable path. To install cres with ntuple support, run

cargo install cres --features ntuple

This requires a recent version of libclang.

Linking may fail due to a cargo bug. In that case, determine the necessary flags by running root-config --libs and manually add them, e.g.

RUSTFLAGS='-C link-arg=-lCore' cargo install cres --features ntuple

Input files are recognised automatically, the output file format can be chosen with the --outformat flag.

Use as a library

For full flexibility like custom distance functions cres can be used as a library from Rust and C. For examples, see the examples subdirectory. The Rust API is documented on docs.rs. The C API is still limited and only available on unixoid platforms. It will be extended on request.