summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-14 15:24:55 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-15 23:48:40 +0200
commit74af5da4659e3511fa7da9b29bb79a346d7221b6 (patch)
tree4229c3be764d84ab7aa2ba2308a6f2e8c2e59952
parent332bff0f6390abe2c1cb63da60f0e945a3e498d7 (diff)
hep: Add nlojet++.
* guix-science/packages/hep.scm (nlojet++): New variable.
-rw-r--r--guix-science/packages/hep.scm19
1 files changed, 19 insertions, 0 deletions
diff --git a/guix-science/packages/hep.scm b/guix-science/packages/hep.scm
index cf70272..131a18f 100644
--- a/guix-science/packages/hep.scm
+++ b/guix-science/packages/hep.scm
@@ -229,6 +229,25 @@ ingredient of phenomenological and experimental studies at hadron and heavy-ion
229colliders (e.g. LHC, HERA, Tevatron, EIC, FCC) and in cosmic-ray physics.") 229colliders (e.g. LHC, HERA, Tevatron, EIC, FCC) and in cosmic-ray physics.")
230 (license license:gpl3))) 230 (license license:gpl3)))
231 231
232(define-public nlojet++
233 (package
234 (name "nlojet++")
235 (version "4.1.3")
236 (source
237 (origin
238 (method url-fetch)
239 (uri (string-append
240 "https://desy.de/~znagy/hep-programs/nlojet++/nlojet++-" version
241 ".tar.gz"))
242 (sha256
243 (base32 "18qfn5kjzvnyh29x40zm2maqzfmrnay9r58n8pfpq5lcphdhhv8p"))))
244 (build-system gnu-build-system)
245 (home-page "https://www.desy.de/~znagy/Site/NLOJet++.html")
246 (synopsis "C++ program for calculating LO and NLO order cross section")
247 (description
248 "Implementation of calculation of the hadron jet cross sections in C++.")
249 (license license:gpl2)))
250
232(define-public python-hepstats 251(define-public python-hepstats
233 (package 252 (package
234 (name "python-hepstats") 253 (name "python-hepstats")