Skip to content

Commit

Permalink
Add the HepMC reader to our project
Browse files Browse the repository at this point in the history
This speeds things up a lot and avoids needing to add a development
package to the Project.toml file
  • Loading branch information
graeme-a-stewart committed May 12, 2023
1 parent c1ef568 commit 6b94212
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 14 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ version = "0.1.0"
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
FlameGraphs = "08572546-2f56-4bcf-ba4e-bab62c3a3f89"
HepMC3 = "423f2d09-83c6-4bed-945f-581c3d5a0e70"
HepMC3_jll = "b85c3e40-22db-5268-bacb-02bd65cb4e01"
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899"
Expand Down
1 change: 0 additions & 1 deletion chep.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ Wrapper to run jet reco code feeding in the standard set of HepMC events that
are used for benchmarking jet reco.
"""

import HepMC3
import FlameGraphs
import ProfileSVG

Expand Down
7 changes: 0 additions & 7 deletions hepmc3jl/Manifest.toml

This file was deleted.

4 changes: 0 additions & 4 deletions hepmc3jl/Project.toml

This file was deleted.

File renamed without changes.
6 changes: 5 additions & 1 deletion src/JetReconstruction.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ include("Particle.jl")
export energy, px, py, pz, pt, phi, mass, eta, kt, ϕ, η

# Philipp's pseudojet
include("pseudojet.jl")
include("Pseudojet.jl")
export PseudoJet, rap, phi, pt2

# Simple HepMC3 reader
include("HepMC3.jl")
export HepMC3

# algorithmic part
include("Algo.jl")
export sequential_jet_reconstruct, kt_algo, anti_kt_algo, anti_kt_algo_alt, cambridge_aachen_algo
Expand Down
File renamed without changes.

0 comments on commit 6b94212

Please sign in to comment.