Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-22 08:05:48

0001 # Copyright Spack Project Developers. See COPYRIGHT file for details.
0002 #
0003 # SPDX-License-Identifier: (Apache-2.0 OR MIT)
0004 
0005 from spack_repo.builtin.build_systems.cmake import CMakePackage
0006 
0007 from spack.package import *
0008 
0009 
0010 class Jpacphoto(CMakePackage):
0011     """jpacPhoto is a framework for amplitude analysis involving single
0012     meson production via quasi-elastic scattering of a real photon on a
0013     nucleon target."""
0014 
0015     homepage = "https://eicweb.phy.anl.gov/monte_carlo/jpacPhoto"
0016     url = (
0017         "https://eicweb.phy.anl.gov/monte_carlo/jpacPhoto/-/archive/v1.0.1/jpacPhoto-v1.0.1.tar.gz"
0018     )
0019     git = "https://eicweb.phy.anl.gov/monte_carlo/jpacPhoto.git"
0020 
0021     tags = ["hep", "eic"]
0022 
0023     maintainers("wdconinc", "sly2j")
0024 
0025     license("MIT", checked_by="wdconinc")
0026 
0027     version("1.0.1", sha256="80e52c5330f330cf2bf2cd785e11938d56c59e58aedb655c0daa02decfc17838")
0028 
0029     depends_on("cxx", type="build")
0030     depends_on("cmake@3.8:", type="build")
0031 
0032     depends_on("root +math")