
* Updated Geant4 and dependencies clhep and vecgeom to use cxxstd= variant so that it is applied consistently. * Make standalone geant4 data packages that are used when data is not installed with geant4. This allows installing the data files are externals that can be common to many compiler version. * move geant4 data package dependencies to umbrella package geant4-data
146 lines
5.4 KiB
Python
146 lines
5.4 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack import *
|
|
import platform
|
|
import os
|
|
import glob
|
|
|
|
|
|
class Geant4(CMakePackage):
|
|
"""Geant4 is a toolkit for the simulation of the passage of particles
|
|
through matter. Its areas of application include high energy, nuclear
|
|
and accelerator physics, as well as studies in medical and space
|
|
science."""
|
|
|
|
homepage = "http://geant4.cern.ch/"
|
|
url = "http://geant4.cern.ch/support/source/geant4.10.01.p03.tar.gz"
|
|
|
|
version('10.04', 'b84beeb756821d0c61f7c6c93a2b83de')
|
|
version('10.03.p03', 'ccae9fd18e3908be78784dc207f2d73b')
|
|
|
|
variant('qt', default=False, description='Enable Qt support')
|
|
variant('vecgeom', default=False, description='Enable vecgeom support')
|
|
variant('opengl', default=False, description='Optional OpenGL support')
|
|
variant('x11', default=False, description='Optional X11 support')
|
|
variant('motif', default=False, description='Optional motif support')
|
|
variant('threads', default=True, description='Build with multithreading')
|
|
variant('data', default=True, description='Install geant4 data')
|
|
|
|
variant('cxxstd',
|
|
default='11',
|
|
values=('11', '14', '17'),
|
|
multi=False,
|
|
description='Use the specified C++ standard when building.')
|
|
|
|
depends_on('cmake@3.5:', type='build')
|
|
|
|
# C++11 support
|
|
depends_on("xerces-c cxxstd=11", when="cxxstd=11")
|
|
depends_on("clhep@2.4.0.0 cxxstd=11", when="@10.04 cxxstd=11")
|
|
depends_on("clhep@2.3.4.6 cxxstd=11", when="@10.03.p03 cxxstd=11")
|
|
depends_on("vecgeom cxxstd=11", when="+vecgeom cxxstd=11")
|
|
|
|
# C++14 support
|
|
depends_on("xerces-c cxxstd=14", when="cxxstd=14")
|
|
depends_on("clhep@2.4.0.0 cxxstd=14", when="@10.04 cxxstd=14")
|
|
depends_on("clhep@2.3.4.6 cxxstd=14", when="@10.03.p03 cxxstd=14")
|
|
depends_on("vecgeom cxxstd=14", when="+vecgeom cxxstd=14")
|
|
|
|
# C++17 support
|
|
depends_on("xerces-c cxxstd=17", when="cxxstd=17")
|
|
patch('cxx17.patch', when='@:10.03.p99 cxxstd=17')
|
|
patch('cxx17_geant4_10_0.patch', level=1, when='@10.04.00: cxxstd=17')
|
|
depends_on("clhep@2.4.0.0 cxxstd=17", when="@10.04 cxxstd=17")
|
|
depends_on("clhep@2.3.4.6 cxxstd=17", when="@10.03.p03 cxxstd=17")
|
|
depends_on("vecgeom cxxstd=17", when="+vecgeom cxxstd=17")
|
|
|
|
depends_on("expat")
|
|
depends_on("zlib")
|
|
depends_on("mesa", when='+opengl')
|
|
depends_on("libx11", when='+x11')
|
|
depends_on("libxmu", when='+x11')
|
|
depends_on("motif", when='+motif')
|
|
depends_on("qt@4.8:4.999", when="+qt")
|
|
|
|
# if G4 data not installed with geant4
|
|
# depend on G4 data packages
|
|
# this allows external data installations
|
|
# to avoid duplication
|
|
|
|
depends_on('geant4-data@10.03.p03', when='@10.03.p03 ~data')
|
|
depends_on('geant4-data@10.04', when='@10.04 ~data')
|
|
|
|
def cmake_args(self):
|
|
spec = self.spec
|
|
|
|
options = [
|
|
'-DGEANT4_USE_GDML=ON',
|
|
'-DGEANT4_USE_SYSTEM_CLHEP=ON',
|
|
'-DGEANT4_USE_G3TOG4=ON',
|
|
'-DGEANT4_INSTALL_DATA=ON',
|
|
'-DGEANT4_BUILD_TLS_MODEL=global-dynamic',
|
|
'-DGEANT4_USE_SYSTEM_EXPAT=ON',
|
|
'-DGEANT4_USE_SYSTEM_ZLIB=ON',
|
|
'-DXERCESC_ROOT_DIR:STRING=%s' %
|
|
spec['xerces-c'].prefix, ]
|
|
|
|
arch = platform.system().lower()
|
|
if arch != 'darwin':
|
|
if "+x11" in spec and "+opengl" in spec:
|
|
options.append('-DGEANT4_USE_OPENGL_X11=ON')
|
|
if "+motif" in spec and "+opengl" in spec:
|
|
options.append('-DGEANT4_USE_XM=ON')
|
|
if "+x11" in spec:
|
|
options.append('-DGEANT4_USE_RAYTRACER_X11=ON')
|
|
|
|
options.append('-DGEANT4_BUILD_CXXSTD=c++{0}'.format(
|
|
self.spec.variants['cxxstd'].value))
|
|
|
|
if '+qt' in spec:
|
|
options.append('-DGEANT4_USE_QT=ON')
|
|
options.append(
|
|
'-DQT_QMAKE_EXECUTABLE=%s' %
|
|
spec['qt'].prefix.bin.qmake)
|
|
|
|
if '+vecgeom' in spec:
|
|
options.append('-DGEANT4_USE_USOLIDS=ON')
|
|
options.append('-DUSolids_DIR=%s' % spec[
|
|
'vecgeom'].prefix.lib.CMake.USolids)
|
|
|
|
on_or_off = lambda opt: 'ON' if '+' + opt in spec else 'OFF'
|
|
options.append('-DGEANT4_BUILD_MULTITHREADED=' + on_or_off('threads'))
|
|
|
|
# install the data with geant4
|
|
options.append('-DGEANT4_INSTALL_DATA=' + on_or_off('data'))
|
|
|
|
return options
|
|
|
|
def url_for_version(self, version):
|
|
"""Handle Geant4's unusual version string."""
|
|
return ("http://geant4.cern.ch/support/source/geant4.%s.tar.gz" % version)
|
|
|
|
@run_before('cmake')
|
|
def make_data_links(self):
|
|
if '+data' in self.spec:
|
|
return
|
|
spec = self.spec
|
|
version = self.version
|
|
major = version[0]
|
|
minor = version[1]
|
|
if len(version) > 2:
|
|
patch = version[-1]
|
|
else:
|
|
patch = 0
|
|
datadir = 'Geant4-%s.%s.%s/data' % (major, minor, patch)
|
|
with working_dir(join_path(spec.prefix.share, datadir),
|
|
create=True):
|
|
dirs = glob.glob('%s/%s/*' %
|
|
(spec['geant4-data'].prefix.share, datadir))
|
|
for d in dirs:
|
|
target = os.readlink(d)
|
|
os.symlink(target, os.path.basename(target))
|