Skip to content
Snippets Groups Projects
Forked from VecGeom / VecGeom
439 commits behind, 1 commit ahead of the upstream repository.

Introduction

VecGeom is a geometry modeller library with hit-detection features as needed by particle detector simulation at the LHC and beyond. It was incubated by a Geant-R&D initiative and the motivation to combine the code of Geant4 and ROOT/TGeo into a single, better maintainable piece of software within the EU-AIDA program. As such it is close in scope to TGeo and Geant4 geometry modellers. Its main features are:

  • Build a hierarchic detector geometry out of simple primitives and use it on the CPU or GPU(CUDA)
  • Calculate distances and other geometrical information
  • Collision detection and navigation in complex scenes
  • SIMD support in various flavours:
    • True vector interfaces to primitives with SIMD acceleration when benefical
    • SIMD acceleration of navigation through the use of special voxelization or bounding box hierarchies
  • Runtime specialization of objects to improve execution speed via a factory mechanism and use of C++ templates
  • VecGeom also compiles under CUDA
  • Few generic kernels serve many instanteations of various simple or vectored interfaces or the CUDA version.

Building/Installing VecGeom

Requirements

  • CMake for configuration, plus a suitable build tool such as GNU make or Ninja
  • C++ compiler supporting a minimum ISO Standard of 11
    • The library has been tested to compile with (but is not necessarily limited to):
      • GCC >= 4.7.3
      • Clang >= 3.4
      • ICC >= 14.0.2
  • VecCore version 0.8.0 or newer
    • VecGeom can build/install its own copy of VecCore by setting the CMake variable BUILTIN_VECCORE to ON
  • Optional
    • Vc 1.3.3 or newer for SIMD support
    • Xerces-C for GDML support
    • CUDA Toolkit 10.0 or newer for CUDA support
      • An NVidia GPU with sufficient compute capability must be present on the host system

Quick Start

$ mkdir build && cd build
$ cmake ..
$ cmake --build .
$ cmake --build . --target install

Build Options

The table below shows the available CMake options for VecGeom that may be used to customize the build

Option Default Description
BACKEND scalar Vector backend API to be used
BENCHMARK OFF Enable performance comparisons
BUILD_TESTING ON Enable build of tests and integration with CTest
BUILTIN_VECCORE OFF Build VecCore and its dependencies from source
COVERAGE_TESTING OFF Enable coverage testing flags
CMAKE_CUDA_ARCHITECTURES CUDA Compiler's Default (CMake >= 3.18) or Host GPU (CMake < 3.18) Default CUDA device architecture
DATA_DOWNLOAD OFF Enable downloading of data for tests
DISTANCE_DEBUG OFF Enable comparison of calculated distances againt ROOT/Geant4 behind the scenes
EMBREE OFF Enable Intel Embree
FAST_MATH OFF Enable the -ffast-math compiler option in Release builds
GDML OFF Enable GDML persistency. Requres Xerces-C
GDMLDEBUG OFF Enable additional debug information in GDML module
GEANT4 OFF Build with support for Geant4 (https://geant4.web.cern.ch)
INPLACE_TRANSFORMATIONS ON Put transformation as members rather than pointers into PlacedVolume objects
NO_SPECIALIZATION ON Disable specialization of volumes
PLANESHELL ON Enable the use of PlaneShell class for the trapezoid
QUADRILATERAL_ACCELERATION ON Enable SIMD vectorization when looping over quadrilaterals
ROOT OFF Build with support for ROOT (https://root.cern)
STATIC_ANALYSIS OFF Enable static analysis on VecGeom
USE_CACHED_TRANSFORMATIONS OFF Use cached transformations in navigation states
USE_INDEXEDNAVSTATES ON Use indices rather than volume pointers in NavigationState objects
USE_NAVINDEX OFF Use navigation index table and states
VALIDATION OFF Enable validation tests from CMS geometry
VECGEOM_CUDA_VOLUME_SPECIALIZATION OFF Use specialized volumes for CUDA
VECGEOM_ENABLE_CUDA OFF Enable compilation for CUDA
VECGEOM_VECTOR sse2 Vector instruction set to be used

Documentation

Note on using VecGeom CUDA Support

If VecGeom is built with VECGEOM_ENABLE_CUDA, then it is still usable by CPU-only code but you must link your binaries to both the vecgeom and vecgeomcuda libraries.

If your code uses VecGeom's CUDA interface in device code or kernels, then it must either:

  1. Link and device-link to the vecgeomcuda_static target. In CMake, this is automatically handled by, e.g.

    find_package(VecGeom)
    add_executable(MyCUDA MyCUDA.cu)
    set_target_properties(MyCUDA PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
    target_link_libraries(MyCUDA PRIVATE VecGeom::vecgeomcuda_static)
  2. Link to the vecgeomcuda shared library, and device-link to the vecgeomcuda_static target, e.g. in CMake (only CMake 3.18 and newer):

    find_package(VecGeom)
    add_library(MyCUDA MyCUDA.cu)
    set_target_properties(MyCUDA PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
    target_link_libraries(MyCUDA PRIVATE VecGeom::vecgeomcuda)
    # Requires CMake 3.18 or newer
    target_compile_options(MyCUDA PRIVATE $<DEVICE_LINK:$<TARGET_FILE:vecgeomcuda_static>>)

It is strongly recommended to use the first option unless you must use shared libraries. It is also the developer's responsibility to handle any further device-linking of vecgeomcuda using libraries that may be required if these libraries expose device/kernel interfaces.

Bug Reports

Please report all issues on our JIRA Issue tracking system