Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/CFF.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:
paths:
- CITATION.cff
pull_request:
workflow_dispatch:

name: CITATION.cff
jobs:
Validate-CITATION-cff:
runs-on: ubuntu-latest
name: Validate CITATION.cff
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate CITATION.cff
uses: dieghernan/cff-validator@v4
41 changes: 35 additions & 6 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: JetReconstruction.jl
message: >-
If you use this software, please cite it using the
metadata from this file.
software DOI and the preferred citation.
type: software
authors:
- given-names: Graeme Andrew
Expand All @@ -18,11 +21,37 @@ authors:
family-names: Gras
email: philippe.gras@cern.ch
orcid: 'https://orcid.org/0000-0002-3932-5967'
- given-names: Benedikt
family-names: Hegner
email: benedikt.hegner@cern.ch
affiliation: CERN
orcid: 'https://orcid.org/0009-0009-2020-1620'
- given-names: Sattwamo
family-names: Ghosh
identifiers:
- type: doi
value: 10.5281/zenodo.12671414
description: Zenodo
preferred-citation:
type: article
title: Polyglot Jet Finding
authors:
- given-names: Graeme Andrew
family-names: Stewart
email: graeme.andrew.stewart@cern.ch
affiliation: CERN
orcid: 'https://orcid.org/0000-0003-0182-7088'
- given-names: Atell
family-names: Krasnopolski
email: delta_atell@protonmail.com
orcid: 'https://orcid.org/0009-0009-9336-0219'
- given-names: Philippe
family-names: Gras
email: philippe.gras@cern.ch
orcid: 'https://orcid.org/0000-0002-3932-5967'
- given-names: Benedikt
family-names: Hegner
email: benedikt.hegner@cern.ch
affiliation: CERN
orcid: 'https://orcid.org/0009-0009-2020-1620'
identifiers:
- type: doi
value: 10.1051/epjconf/202429505017
repository-code: 'https://github.com/JuliaHEP/JetReconstruction.jl'
abstract: Jet reconstruction (reclustering) with Julia
license: MIT
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliahep.github.io/JetReconstruction.jl/stable)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliahep.github.io/JetReconstruction.jl/dev)
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
[![CITATION-cff](https://github.com/dieghernan/cff-validator/actions/workflows/cff-validator.yml/badge.svg)](https://github.com/dieghernan/cff-validator/actions/workflows/cff-validator.yml)

## This package implements sequential Jet Reconstruction (clustering)

Expand Down
Loading