Skip to content

Jet Clustering with FastJet on LHC-Olympics Data

Notifications You must be signed in to change notification settings

ewencedr/FastJet-LHCO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 

Repository files navigation

Jet Clustering with FastJet on LHC-Olympics Data

python black FastJet

Description

This repository shows how cluster jets in particle physics with Python. The jet clustering will be done using the FastJet package. The FastJet package is a C++ library for jet finding. It is interfaced to Python using the FastJet python package.

The LHC-Olympics dataset is used for this example. It consists of dijet events that are clustered to get the constituents and jet features of the two jets.

The FastJet library offers two main interfaces on how to perform clustering on HEP data.

  • The Awkward interface
  • The Classic interface (ToDo)

This repository contains two notebooks, one for each interface.

The Awkward interface is the new interface made to handle multi-event data, whereas the classic interface is the same as the C++ library, designed to handle the data in a particle-at-a-time fashion. The Awkward interface is the recommended interface to use, since it is faster and more memory efficient. However, the classic interface is still maintained and used.

The Awkward interface has its name from the usage of the Awkward Array library. The Awkward Array library is a library for manipulating arrays of complex data structures as they appear in particle physics. The library is designed to efficiently manipulate large collections of heterogeneous data, in particular particle physics events represented as nested, variable-sized records. In simple words, Awkward Arrays are like numpy arrays, but with the ability to handle nested data structures. They additionally can be easily combined with libraries such as Vector to directly include vector operations on the data. Vector also includes for example Lorentz vectors and is therefore very useful for particle physics.

For more details on how to use the FastJet python package, see the FastJet python package documentation.

About

Jet Clustering with FastJet on LHC-Olympics Data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages