oxyroot 0.1.25

Another attempt to make library reading and writing of `.root` binary files which are commonly used in particle physics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
cmake_minimum_required(VERSION 3.17)
project(gen_geant4)

set(CMAKE_CXX_STANDARD 17)

find_package(Geant4 REQUIRED)

#----------------------------------------------------------------------------
# Setup Geant4 include directories and compile definitions
#
include(${Geant4_USE_FILE})

include_directories(        ${Geant4_INCLUDE_DIR})

add_executable(gen_geant4 main.cpp)
target_link_libraries(gen_geant4 ${Geant4_LIBRARIES} )