diff --git a/.gitignore b/.gitignore index 230c5ed..b9815fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,34 @@ -/Manifest*.toml +# Files generated by invoking Julia with --code-coverage +*.jl.cov +*.jl.*.cov + +# Files generated by invoking Julia with --track-allocation +*.jl.mem + +# System-specific files and directories generated by the BinaryProvider and BinDeps packages +# They contain absolute paths specific to the host computer, and so should not be committed +deps/deps.jl +deps/build.log +deps/downloads/ +deps/usr/ +deps/src/ + +# Build artifacts for creating documentation generated by the Documenter package +docs/build/ +docs/site/ + +# File generated by Pkg, the package manager, based on a corresponding Project.toml +# It records a fixed state of all packages used by the project. As such, it should not be +# committed for packages, but should be committed for applications that require a static +# environment. +Manifest.toml + +# Editor files +.vscode/* + +# Misc files +.DS_Store +/notebooks/* +**/profile/* +/statprof/* +/debug/* diff --git a/Project.toml b/Project.toml index 42d45fd..870fbbd 100644 --- a/Project.toml +++ b/Project.toml @@ -1,13 +1,28 @@ name = "JetTaggingFCC" uuid = "12f500dc-52b1-4d85-9b70-29fa5347616c" authors = ["Harry and contributors"] -version = "1.0.0-DEV" +version = "0.1.0" + +[deps] +EDM4hep = "eb32b910-dde9-4347-8fce-cd6be3498f0c" +JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" +JetReconstruction = "44e8cb2c-dfab-4825-9c70-d4808a591196" +ONNXRunTime = "e034b28e-924e-41b2-b98f-d2bbeb830c6a" +PhysicalConstants = "5ad8b20f-a522-5ce9-bfc9-ddf1d5bda6ab" +StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" [compat] -julia = "1.6.7" +EDM4hep = "0.4.3" +JSON = "0.21.4" +JetReconstruction = "1.0" +ONNXRunTime = "1.3" +PhysicalConstants = "0.2" +StructArrays = "0.6.21" +julia = "1.9.0" [extras] +Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["Test"] +test = ["Aqua", "Test"] diff --git a/README.md b/README.md index 2c9d6e5..4c665ea 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # JetTaggingFCC [![Build Status](https://github.com/JuliaHEP/JetTaggingFCC.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaHEP/JetTaggingFCC.jl/actions/workflows/CI.yml?query=branch%3Amain) + +This package is developing jet tagging functionally for FCC. + +**Important**: Currently it is necessary to use the pre-release of `JetReconstruction.jl` v1.0. To do this activate development for `JetReconstruction` in the usual way, viz. + +```julia +julia> using Pkg + +julia> Pkg.develop("JetReconstruction") +```