Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:27:54

0001 # Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
0002 # Spack Project Developers. See the top-level COPYRIGHT file for details.
0003 #
0004 # SPDX-License-Identifier: (Apache-2.0 OR MIT)
0005 
0006 from spack.package import *
0007 
0008 
0009 class Algorithms(CMakePackage):
0010     """Collection of Reconstruction Algorithms using DD4hep and EDM4hep."""
0011 
0012     homepage = "https://eic.github.io/algorithms"
0013     url = "https://github.com/eic/algorithms/archive/refs/tags/v1.1.0.tar.gz"
0014     git = "https://github.com/eic/algorithms.git"
0015 
0016     maintainers = ["wdconinc", "sly2j"]
0017 
0018     version("main", branch="main")
0019     version("master", branch="master", deprecated=True)
0020     version("1.2.0", sha256="893da7948baf9aa778b1716b3ce7331cd14befa7e43f3cce810c6b49235c73fd")
0021     version("1.1.0", sha256="f7fef07ee4217b1d224bbe3f87e21e155e1e205356ad5a19b7d09558e7c5c024", deprecated=True)  # exposes log() function
0022     version("1.0.0", sha256="b36598ba539938c0f8e5d75170f770e5701a1ad81dbee929ccc36df15233a99d")
0023 
0024     depends_on("c", type="build")
0025     depends_on("cxx", type="build")
0026 
0027     depends_on("dd4hep +ddrec")
0028     depends_on("edm4hep")
0029     depends_on("edm4eic")
0030     depends_on("cppgsl")
0031     depends_on("fmt")