git: 3ad0e6474b2c - main - devel/root: Revive port: Data analysis framework made at CERN
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 30 Dec 2022 10:45:18 UTC
The branch main has been updated by eduardo: URL: https://cgit.FreeBSD.org/ports/commit/?id=3ad0e6474b2c2beccdd55a58802381701fa10d34 commit 3ad0e6474b2c2beccdd55a58802381701fa10d34 Author: Erik Jensen <erik@tenku.dk> AuthorDate: 2022-12-30 10:42:00 +0000 Commit: Nuno Teixeira <eduardo@FreeBSD.org> CommitDate: 2022-12-30 10:44:41 +0000 devel/root: Revive port: Data analysis framework made at CERN - Submitter becomes maintainer ROOT is a framework for data processing, born at CERN, at the heart of the research on high-energy physics. Every day, thousands of physicists use ROOT applications to analyze their data or to perform simulations. WWW: https://root.cern/ PR: 267717 --- MOVED | 1 - devel/Makefile | 1 + devel/root/Makefile | 66 + devel/root/distinfo | 3 + devel/root/files/patch-build_unix_compiledata.sh | 11 + .../files/patch-cmake_modules_CheckCompiler.cmake | 11 + .../files/patch-cmake_modules_SetUpLinux.cmake | 22 + devel/root/files/patch-core_base_src_TUUID.cxx | 12 + .../patch-core_dictgen_src_rootcling__impl.cxx | 11 + .../root/files/patch-core_metacling_src_TCling.cxx | 20 + .../patch-core_metacling_src_rootclingTCling.cxx | 14 + .../files/patch-core_thread_src_TPosixThread.cxx | 11 + .../root/files/patch-core_unix_src_TUnixSystem.cxx | 11 + ...-interpreter_cling_include_cling_libc.modulemap | 9 + devel/root/files/patch-main_CMakeLists.txt | 13 + devel/root/pkg-descr | 23 + devel/root/pkg-plist | 5521 ++++++++++++++++++++ 17 files changed, 5759 insertions(+), 1 deletion(-) diff --git a/MOVED b/MOVED index 1dfe2239b8c0..8d73a9fc17fd 100644 --- a/MOVED +++ b/MOVED @@ -1491,7 +1491,6 @@ audio/libjackasyn|audio/jack|2011-02-11|Has expired: development has ceased; try audio/xmms-jackasyn|audio/xmms-jack|2011-02-11|Has expired: development has ceased; try audio/xmms-jack instead lang/p5-SQL-Tokenizer|textproc/p5-SQL-Tokenizer|2011-02-13|Moved to a more appropriate category misc/wanpipe||2011-02-14|Removed -devel/root||2011-02-21|Has expired: Port does not build on supported versions of FreeBSD net/ztelnet||2011-02-21|Has expired: unfetchable print/kaspaliste||2011-02-21|Has expired: yes sysutils/perf||2011-02-21|Has expired: Does not build on supported versions of FreeBSD diff --git a/devel/Makefile b/devel/Makefile index f5172dad0c21..a8510e442d64 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5759,6 +5759,7 @@ SUBDIR += robin-map SUBDIR += roboctl SUBDIR += robodoc + SUBDIR += root SUBDIR += ros-catkin SUBDIR += ros-catkin_pkg SUBDIR += ros-console_bridge diff --git a/devel/root/Makefile b/devel/root/Makefile new file mode 100644 index 000000000000..40c8788d46b0 --- /dev/null +++ b/devel/root/Makefile @@ -0,0 +1,66 @@ +PORTNAME= root +DISTVERSION= 6.26.06 +CATEGORIES= devel science math parallel python +MASTER_SITES= https://root.cern/download/ +DISTFILES= ${PORTNAME}_v${DISTVERSION}.source${EXTRACT_SUFX} + +MAINTAINER= erik@tenku.dk +COMMENT= Data analysis framework made at CERN +WWW= https://root.cern/ + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/LGPL2_1.txt + +BUILD_DEPENDS= ${PYNUMPY} \ + bash:shells/bash +LIB_DEPENDS= libAfterImage.so:graphics/libafterimage \ + libcfitsio.so:astro/cfitsio \ + libcurl.so:ftp/curl \ + libfftw3.so:math/fftw3 \ + libfreetype.so:print/freetype2 \ + libgif.so:graphics/giflib \ + libgsl.so:math/gsl \ + libjpeg.so:graphics/jpeg-turbo \ + liblz4.so:archivers/liblz4 \ + libpcre.so:devel/pcre \ + libpng.so:graphics/png \ + libtbb.so:devel/onetbb \ + libtiff.so:graphics/tiff \ + libvdt.so:math/vdt \ + libxkbcommon.so:x11/libxkbcommon \ + libXrdCl.so:databases/xrootd \ + libzstd.so:archivers/zstd + +USES= blaslapack:openblas cmake desktop-file-utils gettext-runtime gl \ + gnome iconv mysql:57 pgsql:13.0+ python:3.9+ shebangfix sqlite \ + ssl xorg +USE_GL= glew glu opengl +USE_GNOME= cairo gdkpixbuf2 glib20 librsvg2 libxml2 +USE_XORG= ice sm x11 xau xaw xcb xcomposite xcursor xdamage xdmcp xext \ + xfixes xfont xfont2 xft xi xinerama xkbfile xmu xpm xrandr \ + xrender xres xscrnsaver xt xv xxf86vm + +SHEBANG_FILES= etc/dictpch/makepch.py etc/proof/utils/circle.sh \ + etc/proof/utils/crypt etc/proof/utils/pps \ + etc/proof/utils/proofctl.sh etc/proof/utils/proofinstall.sh + +CMAKE_ARGS= -DCMAKE_CXX_STANDARD=14 +CMAKE_ON= gnuinstall soversion + +MAKE_ENV+= ROOTSYS=${CONFIGURE_WRKSRC} +CONFIGURE_WRKSRC?= ${WRKDIR}/.build + +PLIST_SUB+= SHLIB_SHVER="${DISTVERSION:R}" \ + SHLIB_VER="${DISTVERSION}" + +OPTIONS_DEFINE= DOCS +OPTIONS_SUB= yes + +.include <bsd.port.options.mk> + +# File not installed in 14 Current maybe because of clang 14+, temporary fix +.if ${OSVERSION} < 1400000 +PLIST_FILES+= lib/root/std_config.pcm +.endif + +.include <bsd.port.mk> diff --git a/devel/root/distinfo b/devel/root/distinfo new file mode 100644 index 000000000000..b8d7e3713243 --- /dev/null +++ b/devel/root/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1672226334 +SHA256 (root_v6.26.06.source.tar.gz) = b1f73c976a580a5c56c8c8a0152582a1dfc560b4dd80e1b7545237b65e6c89cb +SIZE (root_v6.26.06.source.tar.gz) = 195214157 diff --git a/devel/root/files/patch-build_unix_compiledata.sh b/devel/root/files/patch-build_unix_compiledata.sh new file mode 100644 index 000000000000..4283590fb50b --- /dev/null +++ b/devel/root/files/patch-build_unix_compiledata.sh @@ -0,0 +1,11 @@ +--- build/unix/compiledata.sh.orig 2022-11-16 10:35:46 UTC ++++ build/unix/compiledata.sh +@@ -58,7 +58,7 @@ CXXFLAGS=`echo $CXXFLAGS | sed 's/-Iinclude //' ` + + # Remove the flags turning warnings into errors or extending + # the number of warnings. +-CXXFLAGS=`echo $CXXFLAGS | sed -e 's/-Werror //g' -e 's/-Werror=\S* //g' -e 's/-Wall //g' -e 's/-Wshadow //g' ` ++CXXFLAGS=`echo $CXXFLAGS | sed -e 's/-Werror //g' -e 's/-Werror=[^[[:space:]]]* //g' -e 's/-Wall //g' -e 's/-Wshadow //g' ` + + # Determine the compiler version + BXX="`basename $CXX`" diff --git a/devel/root/files/patch-cmake_modules_CheckCompiler.cmake b/devel/root/files/patch-cmake_modules_CheckCompiler.cmake new file mode 100644 index 000000000000..c1183f5af702 --- /dev/null +++ b/devel/root/files/patch-cmake_modules_CheckCompiler.cmake @@ -0,0 +1,11 @@ +--- cmake/modules/CheckCompiler.cmake.orig 2022-11-16 10:35:46 UTC ++++ cmake/modules/CheckCompiler.cmake +@@ -202,7 +202,7 @@ endif() + + + #---Setup details depending on the major platform type---------------------------------------------- +-if(CMAKE_SYSTEM_NAME MATCHES Linux) ++if(CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME MATCHES FreeBSD) + include(SetUpLinux) + elseif(APPLE) + include(SetUpMacOS) diff --git a/devel/root/files/patch-cmake_modules_SetUpLinux.cmake b/devel/root/files/patch-cmake_modules_SetUpLinux.cmake new file mode 100644 index 000000000000..a222e7c5f3c0 --- /dev/null +++ b/devel/root/files/patch-cmake_modules_SetUpLinux.cmake @@ -0,0 +1,22 @@ +--- cmake/modules/SetUpLinux.cmake.orig 2022-11-16 10:35:46 UTC ++++ cmake/modules/SetUpLinux.cmake +@@ -6,7 +6,7 @@ set(ROOT_PLATFORM linux) + + set(ROOT_PLATFORM linux) + +-if(CMAKE_SYSTEM_PROCESSOR MATCHES x86_64) ++if(CMAKE_SYSTEM_PROCESSOR MATCHES x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES amd64) + if(CMAKE_CXX_COMPILER_ID STREQUAL Intel) + set(ROOT_ARCHITECTURE linuxx8664icc) + else() +@@ -103,6 +103,10 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL Clang) + endif() + + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") ++ ++ if(CMAKE_SYSTEM_NAME MATCHES FreeBSD) ++ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -lexecinfo -lcrypt") ++ endif() + + if(asan) + # See also core/sanitizer/README.md for what's happening. diff --git a/devel/root/files/patch-core_base_src_TUUID.cxx b/devel/root/files/patch-core_base_src_TUUID.cxx new file mode 100644 index 000000000000..825b9667e2d4 --- /dev/null +++ b/devel/root/files/patch-core_base_src_TUUID.cxx @@ -0,0 +1,12 @@ +--- core/base/src/TUUID.cxx.orig 2022-11-16 10:35:46 UTC ++++ core/base/src/TUUID.cxx +@@ -140,6 +140,9 @@ system clock catches up. + #include <sys/sysinfo.h> + #endif + #include <ifaddrs.h> ++#ifdef R__FBSD ++#include <sys/socket.h> ++#endif + #include <netinet/in.h> + #endif + #include <chrono> diff --git a/devel/root/files/patch-core_dictgen_src_rootcling__impl.cxx b/devel/root/files/patch-core_dictgen_src_rootcling__impl.cxx new file mode 100644 index 000000000000..ba7674068cc2 --- /dev/null +++ b/devel/root/files/patch-core_dictgen_src_rootcling__impl.cxx @@ -0,0 +1,11 @@ +--- core/dictgen/src/rootcling_impl.cxx.orig 2022-11-16 10:35:46 UTC ++++ core/dictgen/src/rootcling_impl.cxx +@@ -191,7 +191,7 @@ const char *GetExePath() + #ifdef __APPLE__ + exepath = _dyld_get_image_name(0); + #endif +-#if defined(__linux) || defined(__linux__) ++#if defined(__linux) || defined(__linux__) || defined(R__FBSD) + char linkname[PATH_MAX]; // /proc/<pid>/exe + char buf[PATH_MAX]; // exe path name + pid_t pid; diff --git a/devel/root/files/patch-core_metacling_src_TCling.cxx b/devel/root/files/patch-core_metacling_src_TCling.cxx new file mode 100644 index 000000000000..2da37926bc60 --- /dev/null +++ b/devel/root/files/patch-core_metacling_src_TCling.cxx @@ -0,0 +1,20 @@ +--- core/metacling/src/TCling.cxx.orig 2022-11-16 10:35:46 UTC ++++ core/metacling/src/TCling.cxx +@@ -1249,6 +1249,8 @@ static void RegisterCxxModules(cling::Interpreter &cli + true + #elif defined(R__MACOSX) + true ++#elif defined(R__FBSD) ++ true + #else // Windows + false + #endif +@@ -3351,6 +3353,8 @@ void TCling::UpdateListOfLoadedSharedLibraries() + dl_iterate_phdr(callback_for_dl_iterate_phdr, &newLibs); + for (auto &&lib: newLibs) + RegisterLoadedSharedLibrary(lib.c_str()); ++#elif defined(R__FBSD) ++ // do nothing + #else + Error("TCling::UpdateListOfLoadedSharedLibraries", + "Platform not supported!"); diff --git a/devel/root/files/patch-core_metacling_src_rootclingTCling.cxx b/devel/root/files/patch-core_metacling_src_rootclingTCling.cxx new file mode 100644 index 000000000000..0937b4e92c92 --- /dev/null +++ b/devel/root/files/patch-core_metacling_src_rootclingTCling.cxx @@ -0,0 +1,14 @@ +--- core/metacling/src/rootclingTCling.cxx.orig 2022-11-16 10:35:46 UTC ++++ core/metacling/src/rootclingTCling.cxx +@@ -20,6 +20,11 @@ + + #undef R__DLLEXPORT + ++#ifdef __FreeBSD__ ++char *__progname; ++char **environ; ++#endif ++ + #include "TROOT.h" + #include "TCling.h" + diff --git a/devel/root/files/patch-core_thread_src_TPosixThread.cxx b/devel/root/files/patch-core_thread_src_TPosixThread.cxx new file mode 100644 index 000000000000..ea08cc006ed6 --- /dev/null +++ b/devel/root/files/patch-core_thread_src_TPosixThread.cxx @@ -0,0 +1,11 @@ +--- core/thread/src/TPosixThread.cxx.orig 2022-11-16 10:35:46 UTC ++++ core/thread/src/TPosixThread.cxx +@@ -37,7 +37,7 @@ Int_t TPosixThread::Run(TThread *th, const int affinit + pthread_attr_init(attr); + + if (affinity >= 0) { +- #ifdef R__MACOSX ++ #if defined(R__MACOSX) || defined(R__FBSD) + Warning("Run", "Affinity setting not yet implemented on MacOS"); + #else + cpu_set_t cpuset; diff --git a/devel/root/files/patch-core_unix_src_TUnixSystem.cxx b/devel/root/files/patch-core_unix_src_TUnixSystem.cxx new file mode 100644 index 000000000000..45ea652e84a6 --- /dev/null +++ b/devel/root/files/patch-core_unix_src_TUnixSystem.cxx @@ -0,0 +1,11 @@ +--- core/unix/src/TUnixSystem.cxx.orig 2022-11-16 10:35:46 UTC ++++ core/unix/src/TUnixSystem.cxx +@@ -180,7 +180,7 @@ extern "C" { + # endif + # define HAVE_DLADDR + #endif +-#if defined(R__MACOSX) ++#if defined(R__MACOSX) || defined(R__FBSD) + # define HAVE_BACKTRACE_SYMBOLS_FD + # define HAVE_DLADDR + #endif diff --git a/devel/root/files/patch-interpreter_cling_include_cling_libc.modulemap b/devel/root/files/patch-interpreter_cling_include_cling_libc.modulemap new file mode 100644 index 000000000000..0d6af4ea73d5 --- /dev/null +++ b/devel/root/files/patch-interpreter_cling_include_cling_libc.modulemap @@ -0,0 +1,9 @@ +--- interpreter/cling/include/cling/libc.modulemap.orig 2022-11-16 10:35:46 UTC ++++ interpreter/cling/include/cling/libc.modulemap +@@ -70,5 +70,5 @@ module "xlocale.h" [system] [extern_c] { + // doesn't exist on some systems with unpatched glib 2.26+ + module "xlocale.h" [system] [extern_c] { + export * +- header "xlocale.h" ++ textual header "xlocale.h" + } diff --git a/devel/root/files/patch-main_CMakeLists.txt b/devel/root/files/patch-main_CMakeLists.txt new file mode 100644 index 000000000000..44ad5f0fb8f4 --- /dev/null +++ b/devel/root/files/patch-main_CMakeLists.txt @@ -0,0 +1,13 @@ +--- main/CMakeLists.txt.orig 2022-11-16 10:35:46 UTC ++++ main/CMakeLists.txt +@@ -70,8 +70,8 @@ endif() + else() + set(absruntimedir \${CMAKE_INSTALL_PREFIX}/${runtimedir}) + endif() +-install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -m py_compile \$ENV{DESTDIR}${absruntimedir}/cmdLineUtils.py)") +-install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -O -m py_compile \$ENV{DESTDIR}${absruntimedir}/cmdLineUtils.py)") ++install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -m py_compile ${absruntimedir}/cmdLineUtils.py)") ++install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -O -m py_compile ${absruntimedir}/cmdLineUtils.py)") + configure_file(python/cmdLineUtils.py ${localruntimedir}/cmdLineUtils.py @ONLY) + + diff --git a/devel/root/pkg-descr b/devel/root/pkg-descr new file mode 100644 index 000000000000..4a3de4d23c5a --- /dev/null +++ b/devel/root/pkg-descr @@ -0,0 +1,23 @@ +The ROOT system provides a set of OO frameworks with all the functionality +needed to handle and analyze large amounts of data in a very efficient way. +Having the data defined as a set of objects, specialized storage methods are +used to get direct access to the separate attributes of the selected objects, +without having to touch the bulk of the data. Included are histograming methods +in an arbitrary number of dimensions, curve fitting, function evaluation, +minimization, graphics and visualization classes to allow the easy setup of an +analysis system that can query and process the data interactively or in batch +mode, as well as a general parallel processing framework, PROOF, that can +considerably speed up an analysis. + +Thanks to the built-in C++ interpreter cling, the command, the scripting and +the programming language are all C++. The interpreter allows for fast +prototyping of the macros since it removes the time consuming compile/link +cycle. It also provides a good environment to learn C++. If more performance +is needed the interactively developed macros can be compiled using a C++ +compiler via a machine independent transparent compiler interface called ACliC. + +The system has been designed in such a way that it can query its databases in +parallel on clusters of workstations or many-core machines. ROOT is an open +system that can be dynamically extended by linking external libraries. This +makes ROOT a premier platform on which to build data acquisition, simulation +and data analysis systems. [Text copied from ROOT project's repo 2022-11-11.] diff --git a/devel/root/pkg-plist b/devel/root/pkg-plist new file mode 100644 index 000000000000..ab73377e263c --- /dev/null +++ b/devel/root/pkg-plist @@ -0,0 +1,5521 @@ +bin/genreflex +bin/hadd +bin/hist2workspace +bin/prepareHistFactory +bin/proofserv +bin/proofserv.exe +bin/rmkdepend +bin/root +bin/root-config +bin/root.exe +bin/rootbrowse +bin/rootcint +bin/rootcling +bin/rootcp +bin/rootdrawtree +bin/rooteventselector +bin/rootls +bin/rootmkdir +bin/rootmv +bin/rootn.exe +bin/rootnb.exe +bin/rootprint +bin/rootrm +bin/roots +bin/roots.exe +bin/rootslimtree +bin/setxrd.csh +bin/setxrd.sh +bin/thisroot.csh +bin/thisroot.fish +bin/thisroot.sh +bin/xpdtest +%%ETCDIR%%/HistFactorySchema.dtd +%%ETCDIR%%/Makefile.arch +%%ETCDIR%%/RadioNuclides.txt +%%ETCDIR%%/RooFitHS3_wsexportkeys.json +%%ETCDIR%%/RooFitHS3_wsfactoryexpressions.json +%%ETCDIR%%/class.rules +%%ETCDIR%%/cling/Interpreter/DynamicExprInfo.h +%%ETCDIR%%/cling/Interpreter/DynamicLookupLifetimeHandler.h +%%ETCDIR%%/cling/Interpreter/DynamicLookupRuntimeUniverse.h +%%ETCDIR%%/cling/Interpreter/Exception.h +%%ETCDIR%%/cling/Interpreter/RuntimeOptions.h +%%ETCDIR%%/cling/Interpreter/RuntimePrintValue.h +%%ETCDIR%%/cling/Interpreter/RuntimeUniverse.h +%%ETCDIR%%/cling/Interpreter/Value.h +%%ETCDIR%%/cling/Interpreter/Visibility.h +%%ETCDIR%%/cling/boost.modulemap +%%ETCDIR%%/cling/cint/multimap +%%ETCDIR%%/cling/cint/multiset +%%ETCDIR%%/cling/cuda.modulemap +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_builtin_vars.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_cmath.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_complex_builtins.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_device_functions.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_intrinsics.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_libdevice_declares.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_math_forward_declares.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__clang_cuda_runtime_wrapper.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__stddef_max_align_t.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__wmmintrin_aes.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/__wmmintrin_pclmul.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/adxintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/altivec.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/ammintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/arm64intr.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/arm_acle.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/arm_fp16.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/arm_neon.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/armintr.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/assert.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx2intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512bf16intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512bitalgintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512bwintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512cdintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512dqintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512erintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512fintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512ifmaintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512ifmavlintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512pfintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vbmi2intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vbmiintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vbmivlintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlbf16intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlbitalgintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlbwintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlcdintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vldqintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlvbmi2intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlvnniintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vlvp2intersectintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vnniintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vp2intersectintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vpopcntdqintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avx512vpopcntdqvlintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/avxintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/bmi2intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/bmiintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/cetintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/cldemoteintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/clflushoptintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/clwbintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/clzerointrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/cpuid.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/cuda_wrappers/algorithm +%%ETCDIR%%/cling/lib/clang/9.0.1/include/cuda_wrappers/complex +%%ETCDIR%%/cling/lib/clang/9.0.1/include/cuda_wrappers/new +%%ETCDIR%%/cling/lib/clang/9.0.1/include/emmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/enqcmdintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/f16cintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/float.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/fma4intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/fmaintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/fxsrintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/gfniintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/htmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/htmxlintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/ia32intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/immintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/inttypes.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/invpcidintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/iso646.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/limits.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/lwpintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/lzcntintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/mm3dnow.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/mm_malloc.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/mmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/module.modulemap +%%ETCDIR%%/cling/lib/clang/9.0.1/include/movdirintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/msa.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/mwaitxintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/nmmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/opencl-c-base.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/opencl-c.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math_declares.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/openmp_wrappers/cmath +%%ETCDIR%%/cling/lib/clang/9.0.1/include/openmp_wrappers/math.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/pconfigintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/pkuintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/pmmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/popcntintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/ppc_wrappers/emmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/ppc_wrappers/mm_malloc.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/ppc_wrappers/mmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/ppc_wrappers/xmmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/prfchwintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/ptwriteintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/rdseedintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/rtmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/s390intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/sgxintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/shaintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/smmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stdalign.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stdarg.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stdatomic.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stdbool.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stddef.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stdint.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stdlib.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/stdnoreturn.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/tbmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/tgmath.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/tmmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/unistd.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/unwind.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/vadefs.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/vaesintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/varargs.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/vecintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/vpclmulqdqintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/waitpkgintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/wbnoinvdintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/wchar.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/wmmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/x86intrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/xmmintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/xopintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/xsavecintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/xsaveintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/xsaveoptintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/xsavesintrin.h +%%ETCDIR%%/cling/lib/clang/9.0.1/include/xtestintrin.h +%%ETCDIR%%/cling/libc.modulemap +%%ETCDIR%%/cling/module.modulemap +%%ETCDIR%%/cling/std.modulemap +%%ETCDIR%%/cling/tinyxml2.modulemap +%%ETCDIR%%/cling/vc.modulemap +%%ETCDIR%%/dictpch/makepch.py +%%ETCDIR%%/gdb-backtrace.sh +%%ETCDIR%%/gitinfo.txt +%%ETCDIR%%/helgrind-root.supp +%%ETCDIR%%/html/HELP.html +%%ETCDIR%%/html/ROOT.css +%%ETCDIR%%/html/ROOT.js +%%ETCDIR%%/html/footer.html +%%ETCDIR%%/html/header.html +%%ETCDIR%%/html/saveScriptOutput.C +%%ETCDIR%%/html/shadow.gif +%%ETCDIR%%/html/shadowAlpha.png +%%ETCDIR%%/lsan-root.supp +%%ETCDIR%%/notebook/JsMVA/css/NetworkDesigner.css +%%ETCDIR%%/notebook/JsMVA/css/NetworkDesigner.min.css +%%ETCDIR%%/notebook/JsMVA/css/TMVAHTMLOutput.css +%%ETCDIR%%/notebook/JsMVA/css/TMVAHTMLOutput.min.css +%%ETCDIR%%/notebook/JsMVA/js/DecisionTree.js +%%ETCDIR%%/notebook/JsMVA/js/DecisionTree.min.js +%%ETCDIR%%/notebook/JsMVA/js/JsMVA.js +%%ETCDIR%%/notebook/JsMVA/js/JsMVA.min.js +%%ETCDIR%%/notebook/JsMVA/js/NetworkDesigner.js +%%ETCDIR%%/notebook/JsMVA/js/NetworkDesigner.min.js +%%ETCDIR%%/notebook/JsMVA/js/NeuralNetwork.js +%%ETCDIR%%/notebook/JsMVA/js/NeuralNetwork.min.js +%%ETCDIR%%/notebook/custom/custom.css +%%ETCDIR%%/notebook/custom/custom.js +%%ETCDIR%%/notebook/custom/root-banner_99x33.jpg +%%ETCDIR%%/notebook/custom/root-logo-darkblue_33x33.png +%%ETCDIR%%/notebook/html/sample_config.py +%%ETCDIR%%/notebook/html/templates/root_notebook.tpl +%%ETCDIR%%/notebook/jupyter_notebook_config.py +%%ETCDIR%%/notebook/kernels/root/kernel.json +%%ETCDIR%%/notebook/kernels/root/logo-64x64.png +%%ETCDIR%%/pdg_table.txt +%%ETCDIR%%/plugins/ROOT@@Internal@@RRawFile/P010_RRawFileDavix.C +%%ETCDIR%%/plugins/ROOT@@Internal@@RRawFile/P020_RRawFileNetXNG.C +%%ETCDIR%%/plugins/ROOT@@Math@@DistSampler/P010_TUnuranSampler.C +%%ETCDIR%%/plugins/ROOT@@Math@@DistSampler/P020_TFoamSampler.C +%%ETCDIR%%/plugins/ROOT@@Math@@IRootFinderMethod/P010_Brent.C +%%ETCDIR%%/plugins/ROOT@@Math@@IRootFinderMethod/P020_Bisection.C +%%ETCDIR%%/plugins/ROOT@@Math@@IRootFinderMethod/P030_FalsePos.C +%%ETCDIR%%/plugins/ROOT@@Math@@IRootFinderMethod/P040_Newton.C +%%ETCDIR%%/plugins/ROOT@@Math@@IRootFinderMethod/P050_Secant.C +%%ETCDIR%%/plugins/ROOT@@Math@@IRootFinderMethod/P060_Steffenson.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P010_Minuit2Minimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P020_TMinuitMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P030_GSLMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P040_GSLNLSMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P050_GSLSimAnMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P060_TLinearMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P070_TFumiliMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P080_GeneticMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@Minimizer/P090_RMinimizer.C +%%ETCDIR%%/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C +%%ETCDIR%%/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C +%%ETCDIR%%/plugins/TApplication/P010_TApplicationRemote.C +%%ETCDIR%%/plugins/TApplication/P020_TApplicationServer.C +%%ETCDIR%%/plugins/TArchiveFile/P010_TZIPFile.C +%%ETCDIR%%/plugins/TBrowserImp/P010_TRootBrowser.C +%%ETCDIR%%/plugins/TBrowserImp/P020_TRootBrowserLite.C +%%ETCDIR%%/plugins/TBrowserImp/P030_RWebBrowserImp.C +%%ETCDIR%%/plugins/TChain/P010_TProofChain.C +%%ETCDIR%%/plugins/TDataSetManager/P010_TDataSetManagerFile.C +%%ETCDIR%%/plugins/TDataSetManager/P020_TDataSetManagerAliEn.C +%%ETCDIR%%/plugins/TFile/P010_TWebFile.C +%%ETCDIR%%/plugins/TFile/P040_TDCacheFile.C +%%ETCDIR%%/plugins/TFile/P050_TGFALFile.C +%%ETCDIR%%/plugins/TFile/P070_TAlienFile.C +%%ETCDIR%%/plugins/TFile/P080_TXMLFile.C +%%ETCDIR%%/plugins/TFile/P090_TSQLFile.C +%%ETCDIR%%/plugins/TFile/P100_TXNetFile.C +%%ETCDIR%%/plugins/TFile/P120_TNetFile.C +%%ETCDIR%%/plugins/TFile/P130_TDavixFile.C +%%ETCDIR%%/plugins/TFile/P150_TS3WebFile.C +%%ETCDIR%%/plugins/TFileDrawMap/P010_TFileDrawMap.C +%%ETCDIR%%/plugins/TFileStager/P010_TXNetFileStager.C +%%ETCDIR%%/plugins/TFileStager/P020_TNetFileStager.C +%%ETCDIR%%/plugins/TFitEditor/P010_TFitEditor.C +%%ETCDIR%%/plugins/TGLHistPainter/P010_TGLHistPainter.C +%%ETCDIR%%/plugins/TGLManager/P010_TX11GLManager.C +%%ETCDIR%%/plugins/TGLManager/P020_TGWin32GLManager.C +%%ETCDIR%%/plugins/TGLManager/P030_TGOSXGLManager.C +%%ETCDIR%%/plugins/TGPasswdDialog/P010_TGPasswdDialog.C +%%ETCDIR%%/plugins/TGeoManagerEditor/P010_TGeoManagerEditor.C +%%ETCDIR%%/plugins/TGrid/P010_TAlien.C +%%ETCDIR%%/plugins/TGuiBuilder/P010_TRootGuiBuilder.C +%%ETCDIR%%/plugins/TGuiFactory/P010_TRootGuiFactory.C +%%ETCDIR%%/plugins/TGuiFactory/P030_TWebGuiFactory.C +%%ETCDIR%%/plugins/TImage/P010_TASImage.C +%%ETCDIR%%/plugins/TImagePlugin/P010_TASPluginGS.C +%%ETCDIR%%/plugins/TMinuitGraph/P010_TGraph.C +%%ETCDIR%%/plugins/TPaletteEditor/P010_TASPaletteEditor.C +%%ETCDIR%%/plugins/TProof/P010_TProofCondor.C +%%ETCDIR%%/plugins/TProof/P020_TProofSuperMaster.C +%%ETCDIR%%/plugins/TProof/P030_TProofLite.C +%%ETCDIR%%/plugins/TProof/P040_TProof.C +%%ETCDIR%%/plugins/TProofMgr/P010_TXProofMgr.C +%%ETCDIR%%/plugins/TProofMonSender/P010_TProofMonSenderML.C +%%ETCDIR%%/plugins/TProofMonSender/P020_TProofMonSenderSQL.C +%%ETCDIR%%/plugins/TProofProgressDialog/P010_TProofProgressDialog.C +%%ETCDIR%%/plugins/TProofProgressLog/P010_TProofProgressLog.C +%%ETCDIR%%/plugins/TProofServ/P010_TXProofServ.C +%%ETCDIR%%/plugins/TSQLServer/P010_TMySQLServer.C +%%ETCDIR%%/plugins/TSQLServer/P020_TPgSQLServer.C +%%ETCDIR%%/plugins/TSQLServer/P040_TOracleServer.C +%%ETCDIR%%/plugins/TSQLServer/P050_TODBCServer.C +%%ETCDIR%%/plugins/TSQLServer/P060_TSQLiteServer.C +%%ETCDIR%%/plugins/TSessionViewer/P010_TSessionViewer.C +%%ETCDIR%%/plugins/TSlave/P010_TXSlave.C +%%ETCDIR%%/plugins/TSystem/P020_TDCacheSystem.C +%%ETCDIR%%/plugins/TSystem/P030_TAlienSystem.C +%%ETCDIR%%/plugins/TSystem/P040_TXNetSystem.C +%%ETCDIR%%/plugins/TSystem/P045_TDavixSystem.C +%%ETCDIR%%/plugins/TSystem/P050_TWebSystem.C +%%ETCDIR%%/plugins/TSystem/P070_TNetSystem.C +%%ETCDIR%%/plugins/TView/P010_TView3D.C +%%ETCDIR%%/plugins/TViewerX3D/P010_TViewerX3D.C +%%ETCDIR%%/plugins/TVirtualAuth/P010_TRootAuth.C +%%ETCDIR%%/plugins/TVirtualDragManager/P010_TGuiBldDragManager.C +%%ETCDIR%%/plugins/TVirtualFFT/P010_TFFTComplex.C +%%ETCDIR%%/plugins/TVirtualFFT/P020_TFFTComplexReal.C +%%ETCDIR%%/plugins/TVirtualFFT/P030_TFFTRealComplex.C +%%ETCDIR%%/plugins/TVirtualFFT/P040_TFFTReal.C +%%ETCDIR%%/plugins/TVirtualFitter/P010_TFitter.C +%%ETCDIR%%/plugins/TVirtualFitter/P020_TFumili.C +%%ETCDIR%%/plugins/TVirtualFitter/P030_TFitterMinuit.C +%%ETCDIR%%/plugins/TVirtualFitter/P040_TFitterFumili.C +%%ETCDIR%%/plugins/TVirtualGLImp/P010_TX11GL.C +%%ETCDIR%%/plugins/TVirtualGLImp/P020_TGWin32GL.C +%%ETCDIR%%/plugins/TVirtualGeoConverter/P010_TGeoVGConverter.C +%%ETCDIR%%/plugins/TVirtualGeoPainter/P010_TGeoPainter.C +%%ETCDIR%%/plugins/TVirtualGeoPainter/P020_REveGeoPainter.C +%%ETCDIR%%/plugins/TVirtualGraphPainter/P010_TGraphPainter.C +%%ETCDIR%%/plugins/TVirtualHistPainter/P010_THistPainter.C +%%ETCDIR%%/plugins/TVirtualMonitoringWriter/P010_TMonaLisaWriter.C +%%ETCDIR%%/plugins/TVirtualMonitoringWriter/P020_TSQLMonitoringWriter.C +%%ETCDIR%%/plugins/TVirtualPS/P010_TPostScript.C +%%ETCDIR%%/plugins/TVirtualPS/P020_TSVG.C +%%ETCDIR%%/plugins/TVirtualPS/P030_TPDF.C +%%ETCDIR%%/plugins/TVirtualPS/P040_TImageDump.C +%%ETCDIR%%/plugins/TVirtualPS/P050_TTeXDump.C +%%ETCDIR%%/plugins/TVirtualPad/P010_TPad.C +%%ETCDIR%%/plugins/TVirtualPadEditor/P010_TGedEditor.C +%%ETCDIR%%/plugins/TVirtualPadPainter/P010_TGLPadPainter.C +%%ETCDIR%%/plugins/TVirtualProofPlayer/P010_TProofPlayer.C +%%ETCDIR%%/plugins/TVirtualProofPlayer/P020_TProofPlayerRemote.C +%%ETCDIR%%/plugins/TVirtualProofPlayer/P030_TProofPlayerLocal.C +%%ETCDIR%%/plugins/TVirtualProofPlayer/P040_TProofPlayerSlave.C +%%ETCDIR%%/plugins/TVirtualProofPlayer/P050_TProofPlayerSuperMaster.C +%%ETCDIR%%/plugins/TVirtualProofPlayer/P060_TProofPlayerLite.C +%%ETCDIR%%/plugins/TVirtualStreamerInfo/P010_TStreamerInfo.C +%%ETCDIR%%/plugins/TVirtualTreePlayer/P010_TTreePlayer.C +%%ETCDIR%%/plugins/TVirtualTreeViewer/P010_TTreeViewer.C +%%ETCDIR%%/plugins/TVirtualViewer3D/P010_TVirtualViewerX3D.C +%%ETCDIR%%/plugins/TVirtualViewer3D/P020_TGLSAViewer.C +%%ETCDIR%%/plugins/TVirtualViewer3D/P030_TGLViewer.C +%%ETCDIR%%/plugins/TVirtualX/P010_TGX11.C +%%ETCDIR%%/plugins/TVirtualX/P020_TGX11TTF.C +%%ETCDIR%%/plugins/TVirtualX/P030_TGWin32.C +%%ETCDIR%%/plugins/TVirtualX/P050_TGQuartz.C +%%ETCDIR%%/proof/cluster.conf.sample +%%ETCDIR%%/proof/motd.sample +%%ETCDIR%%/proof/noproof.sample +%%ETCDIR%%/proof/proof.conf.sample +%%ETCDIR%%/proof/proofbench/ProofBenchCPUSel.par +%%ETCDIR%%/proof/proofbench/ProofBenchDataSel.par +%%ETCDIR%%/proof/proofbench/README +%%ETCDIR%%/proof/rootnetrc.sample +%%ETCDIR%%/proof/utils/circle.sh +%%ETCDIR%%/proof/utils/crypt +%%ETCDIR%%/proof/utils/makepbenchpars.sh +%%ETCDIR%%/proof/utils/pcmd +%%ETCDIR%%/proof/utils/pload +%%ETCDIR%%/proof/utils/pps +%%ETCDIR%%/proof/utils/proof-facility +%%ETCDIR%%/proof/utils/proofctl.sh +%%ETCDIR%%/proof/utils/proofinstall.sh +%%ETCDIR%%/proof/utils/push +%%ETCDIR%%/proof/xpd.cf.sample +%%ETCDIR%%/proof/xpd.groups.sample +%%ETCDIR%%/root.desktop +%%ETCDIR%%/root.mimes +%%ETCDIR%%/system.rootauthrc +%%ETCDIR%%/system.rootdaemonrc +%%ETCDIR%%/system.rootrc +%%ETCDIR%%/valgrind-root-python.supp +%%ETCDIR%%/valgrind-root.supp +include/root/AuthConst.h +include/root/BracketAdapters.h +include/root/Bswapcpy.h +include/root/Buttons.h +include/root/Bytes.h +include/root/Byteswap.h +include/root/CPyCppyy/API.h +include/root/CPyCppyy/CommonDefs.h +include/root/CPyCppyy/DispatchPtr.h +include/root/CPyCppyy/PyException.h +include/root/CPyCppyy/PyResult.h +include/root/Compression.h +include/root/CsgOps.h +include/root/DllImport.h +include/root/ESTLType.h +include/root/FTBBox.h +include/root/FTBitmapGlyph.h +include/root/FTCharToGlyphIndexMap.h +include/root/FTCharmap.h +include/root/FTContour.h +include/root/FTExtrdGlyph.h +include/root/FTFace.h +include/root/FTFont.h +include/root/FTGL.h +include/root/FTGLBitmapFont.h +include/root/FTGLExtrdFont.h +include/root/FTGLOutlineFont.h +include/root/FTGLPixmapFont.h +include/root/FTGLPolygonFont.h +include/root/FTGLTextureFont.h +include/root/FTGlyph.h +include/root/FTGlyphContainer.h +include/root/FTLibrary.h +include/root/FTList.h +include/root/FTOutlineGlyph.h +include/root/FTPixmapGlyph.h +include/root/FTPoint.h +include/root/FTPolyGlyph.h +include/root/FTSize.h +include/root/FTTextureGlyph.h +include/root/FTVector.h +include/root/FTVectoriser.h +include/root/Fit/BasicFCN.h +include/root/Fit/BinData.h +include/root/Fit/Chi2FCN.h +include/root/Fit/DataOptions.h +include/root/Fit/DataRange.h +include/root/Fit/FcnAdapter.h +include/root/Fit/FitConfig.h +include/root/Fit/FitData.h +include/root/Fit/FitExecutionPolicy.h +include/root/Fit/FitResult.h +include/root/Fit/FitUtil.h +include/root/Fit/Fitter.h +include/root/Fit/LogLikelihoodFCN.h +include/root/Fit/ParameterSettings.h +include/root/Fit/PoissonLikelihoodFCN.h +include/root/Fit/SparseData.h +include/root/Fit/UnBinData.h +include/root/Foption.h +include/root/GLConstants.h +include/root/Getline.h +include/root/Gtypes.h +include/root/GuiTypes.h +include/root/HFMsgService.h +include/root/HFitInterface.h +include/root/HelpSMText.h +include/root/HelpText.h +include/root/HelpTextTV.h +include/root/Hepevt.h +include/root/Hoption.h +include/root/Hparam.h +include/root/Htypes.h +include/root/KeySymbols.h +include/root/MPCode.h +include/root/MPSendRecv.h +include/root/Match.h +include/root/Math/AdaptiveIntegratorMultiDim.h +include/root/Math/AllIntegrationTypes.h +include/root/Math/AxisAngle.h +include/root/Math/BasicMinimizer.h +include/root/Math/BinaryOpPolicy.h +include/root/Math/BinaryOperators.h +include/root/Math/Boost.h +include/root/Math/BoostX.h +include/root/Math/BoostY.h +include/root/Math/BoostZ.h +include/root/Math/BrentMethods.h +include/root/Math/BrentMinimizer1D.h +include/root/Math/BrentRootFinder.h +include/root/Math/Cartesian2D.h +include/root/Math/Cartesian3D.h +include/root/Math/ChebyshevApprox.h +include/root/Math/ChebyshevPol.h +include/root/Math/CholeskyDecomp.h +include/root/Math/CladDerivator.h +include/root/Math/CramerInversion.icc +include/root/Math/CramerInversionSym.icc +include/root/Math/Cylindrical3D.h +include/root/Math/CylindricalEta3D.h +include/root/Math/Delaunay2D.h +include/root/Math/Derivator.h +include/root/Math/Dfact.h +include/root/Math/Dfactir.h +include/root/Math/Dfinv.h +include/root/Math/Dinv.h +include/root/Math/DisplacementVector2D.h +include/root/Math/DisplacementVector3D.h +include/root/Math/DistFunc.h +include/root/Math/DistFuncMathCore.h +include/root/Math/DistFuncMathMore.h +include/root/Math/DistSampler.h +include/root/Math/DistSamplerOptions.h +include/root/Math/Dsfact.h +include/root/Math/Dsinv.h +include/root/Math/Error.h +include/root/Math/EulerAngles.h +include/root/Math/Expression.h +include/root/Math/Factory.h +include/root/Math/FitMethodFunction.h +include/root/Math/Functions.h +include/root/Math/Functor.h +include/root/Math/GSLFunctionAdapter.h +include/root/Math/GSLIntegrator.h +include/root/Math/GSLMCIntegrator.h +include/root/Math/GSLMinimizer.h +include/root/Math/GSLMinimizer1D.h +include/root/Math/GSLMultiRootFinder.h +include/root/Math/GSLNLSMinimizer.h +include/root/Math/GSLQuasiRandom.h +include/root/Math/GSLRandom.h +include/root/Math/GSLRandomFunctions.h +include/root/Math/GSLRndmEngines.h +include/root/Math/GSLRootFinder.h +include/root/Math/GSLRootFinderDeriv.h +include/root/Math/GSLRootHelper.h +include/root/Math/GSLSimAnMinimizer.h +include/root/Math/GSLSimAnnealing.h +include/root/Math/GaussIntegrator.h +include/root/Math/GaussLegendreIntegrator.h +include/root/Math/GenAlgoOptions.h +include/root/Math/GenVector/3DConversions.h +include/root/Math/GenVector/3DDistances.h +include/root/Math/GenVector/AxisAngle.h +include/root/Math/GenVector/AxisAnglefwd.h +include/root/Math/GenVector/BitReproducible.h +include/root/Math/GenVector/Boost.h +include/root/Math/GenVector/BoostX.h +include/root/Math/GenVector/BoostXfwd.h +include/root/Math/GenVector/BoostY.h +include/root/Math/GenVector/BoostYfwd.h +include/root/Math/GenVector/BoostZ.h +include/root/Math/GenVector/BoostZfwd.h +include/root/Math/GenVector/Boostfwd.h +include/root/Math/GenVector/Cartesian2D.h +include/root/Math/GenVector/Cartesian2Dfwd.h +include/root/Math/GenVector/Cartesian3D.h +include/root/Math/GenVector/Cartesian3Dfwd.h +include/root/Math/GenVector/CoordinateSystemTags.h +include/root/Math/GenVector/Cylindrical3D.h +include/root/Math/GenVector/Cylindrical3Dfwd.h +include/root/Math/GenVector/CylindricalEta3D.h +include/root/Math/GenVector/CylindricalEta3Dfwd.h +include/root/Math/GenVector/DisplacementVector2D.h +include/root/Math/GenVector/DisplacementVector2Dfwd.h +include/root/Math/GenVector/DisplacementVector3D.h +include/root/Math/GenVector/DisplacementVector3Dfwd.h +include/root/Math/GenVector/EulerAngles.h +include/root/Math/GenVector/EulerAnglesfwd.h +include/root/Math/GenVector/GenVectorIO.h +include/root/Math/GenVector/GenVector_exception.h +include/root/Math/GenVector/LorentzRotation.h +include/root/Math/GenVector/LorentzRotationfwd.h +include/root/Math/GenVector/LorentzVector.h +include/root/Math/GenVector/LorentzVectorfwd.h +include/root/Math/GenVector/Plane3D.h +include/root/Math/GenVector/Polar2D.h +include/root/Math/GenVector/Polar2Dfwd.h +include/root/Math/GenVector/Polar3D.h +include/root/Math/GenVector/Polar3Dfwd.h +include/root/Math/GenVector/PositionVector2D.h +include/root/Math/GenVector/PositionVector2Dfwd.h +include/root/Math/GenVector/PositionVector3D.h +include/root/Math/GenVector/PositionVector3Dfwd.h +include/root/Math/GenVector/PtEtaPhiE4D.h +include/root/Math/GenVector/PtEtaPhiE4Dfwd.h +include/root/Math/GenVector/PtEtaPhiM4D.h +include/root/Math/GenVector/PtEtaPhiM4Dfwd.h +include/root/Math/GenVector/PxPyPzE4D.h +include/root/Math/GenVector/PxPyPzE4Dfwd.h +include/root/Math/GenVector/PxPyPzM4D.h +include/root/Math/GenVector/PxPyPzM4Dfwd.h +include/root/Math/GenVector/Quaternion.h +include/root/Math/GenVector/Quaternionfwd.h +include/root/Math/GenVector/Rotation3D.h +include/root/Math/GenVector/Rotation3Dfwd.h +include/root/Math/GenVector/RotationX.h +include/root/Math/GenVector/RotationXfwd.h +include/root/Math/GenVector/RotationY.h +include/root/Math/GenVector/RotationYfwd.h +include/root/Math/GenVector/RotationZ.h +include/root/Math/GenVector/RotationZYX.h +include/root/Math/GenVector/RotationZYXfwd.h +include/root/Math/GenVector/RotationZfwd.h +include/root/Math/GenVector/Transform3D.h +include/root/Math/GenVector/Translation3D.h +include/root/Math/GenVector/VectorUtil.h +include/root/Math/GenVector/eta.h +include/root/Math/GenVector/etaMax.h +include/root/Math/GeneticMinimizer.h +include/root/Math/GoFTest.h +include/root/Math/HelperOps.h +include/root/Math/IFunction.h +include/root/Math/IFunctionfwd.h *** 4925 LINES SKIPPED ***