FreeBSD Bugzilla – Attachment 239034 Details for
Bug 267717
devel/root: Resurrect port
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
shar archive of resurrected devel/root
root.shar (text/plain), 222.97 KB, created by
Erik Jensen
on 2022-12-26 16:23:11 UTC
(
hide
)
Description:
shar archive of resurrected devel/root
Filename:
MIME Type:
Creator:
Erik Jensen
Created:
2022-12-26 16:23:11 UTC
Size:
222.97 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># devel/root/distinfo ># devel/root/files ># devel/root/files/patch-build_unix_compiledata.sh ># devel/root/files/patch-cmake_modules_CheckCompiler.cmake ># devel/root/files/patch-cmake_modules_SetUpLinux.cmake ># devel/root/files/patch-core_base_src_TUUID.cxx ># devel/root/files/patch-core_dictgen_src_rootcling__impl.cxx ># devel/root/files/patch-core_metacling_src_rootclingTCling.cxx ># devel/root/files/patch-core_metacling_src_TCling.cxx ># devel/root/files/patch-core_thread_src_TPosixThread.cxx ># devel/root/files/patch-core_unix_src_TUnixSystem.cxx ># devel/root/files/patch-interpreter_cling_include_cling_libc.modulemap ># devel/root/files/patch-main_CMakeLists.txt ># devel/root/Makefile ># devel/root/pkg-descr ># devel/root/pkg-message ># devel/root/pkg-plist ># >echo x - devel/root/distinfo >sed 's/^X//' >devel/root/distinfo << 'fdfc80910da2cfdae763651adfcc186d' >XTIMESTAMP = 1668248814 >XSHA256 (root-6.26.06/root-project-root-6.26.06-v6-26-06_GH0.tar.gz) = 9faa154b9f9d845a62d6a9b348c898adaa00da974f99b1eafde1aab7d39f8eeb >XSIZE (root-6.26.06/root-project-root-6.26.06-v6-26-06_GH0.tar.gz) = 195215598 >fdfc80910da2cfdae763651adfcc186d >echo c - devel/root/files >mkdir -p devel/root/files > /dev/null 2>&1 >echo x - devel/root/files/patch-build_unix_compiledata.sh >sed 's/^X//' >devel/root/files/patch-build_unix_compiledata.sh << '812c21b256583ecb6533bc562f29d4b0' >X--- build/unix/compiledata.sh.orig 2022-11-12 10:49:06.326644000 +0100 >X+++ build/unix/compiledata.sh 2022-11-11 17:27:16.091990000 +0100 >X@@ -58,7 +58,7 @@ >X >X # Remove the flags turning warnings into errors or extending >X # the number of warnings. >X-CXXFLAGS=`echo $CXXFLAGS | sed -e 's/-Werror //g' -e 's/-Werror=\S* //g' -e 's/-Wall //g' -e 's/-Wshadow //g' ` >X+CXXFLAGS=`echo $CXXFLAGS | sed -e 's/-Werror //g' -e 's/-Werror=[^[[:space:]]]* //g' -e 's/-Wall //g' -e 's/-Wshadow //g' ` >X >X # Determine the compiler version >X BXX="`basename $CXX`" >812c21b256583ecb6533bc562f29d4b0 >echo x - devel/root/files/patch-cmake_modules_CheckCompiler.cmake >sed 's/^X//' >devel/root/files/patch-cmake_modules_CheckCompiler.cmake << '543363981757e8e49c5367fb4b50e54a' >X--- cmake/modules/CheckCompiler.cmake.orig 2022-11-12 10:50:36.820891000 +0100 >X+++ cmake/modules/CheckCompiler.cmake 2022-11-11 17:27:16.094431000 +0100 >X@@ -202,7 +202,7 @@ >X >X >X #---Setup details depending on the major platform type---------------------------------------------- >X-if(CMAKE_SYSTEM_NAME MATCHES Linux) >X+if(CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME MATCHES FreeBSD) >X include(SetUpLinux) >X elseif(APPLE) >X include(SetUpMacOS) >543363981757e8e49c5367fb4b50e54a >echo x - devel/root/files/patch-cmake_modules_SetUpLinux.cmake >sed 's/^X//' >devel/root/files/patch-cmake_modules_SetUpLinux.cmake << 'a2b23f43c3cdd6ebaf7d69651f4462cd' >X--- cmake/modules/SetUpLinux.cmake.orig 2022-11-12 10:49:59.188083000 +0100 >X+++ cmake/modules/SetUpLinux.cmake 2022-11-12 10:52:12.769662000 +0100 >X@@ -6,7 +6,7 @@ >X >X set(ROOT_PLATFORM linux) >X >X-if(CMAKE_SYSTEM_PROCESSOR MATCHES x86_64) >X+if(CMAKE_SYSTEM_PROCESSOR MATCHES x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES amd64) >X if(CMAKE_CXX_COMPILER_ID STREQUAL Intel) >X set(ROOT_ARCHITECTURE linuxx8664icc) >X else() >X@@ -103,6 +103,10 @@ >X endif() >X >X set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") >X+ >X+ if(CMAKE_SYSTEM_NAME MATCHES FreeBSD) >X+ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -lexecinfo -lcrypt") >X+ endif() >X >X if(asan) >X # See also core/sanitizer/README.md for what's happening. >a2b23f43c3cdd6ebaf7d69651f4462cd >echo x - devel/root/files/patch-core_base_src_TUUID.cxx >sed 's/^X//' >devel/root/files/patch-core_base_src_TUUID.cxx << '1d3c0f176bbfc177c76046a01d41a0b1' >X--- core/base/src/TUUID.cxx.orig 2022-11-12 10:53:44.771657000 +0100 >X+++ core/base/src/TUUID.cxx 2022-11-12 10:54:14.833721000 +0100 >X@@ -140,6 +140,9 @@ >X #include <sys/sysinfo.h> >X #endif >X #include <ifaddrs.h> >X+#ifdef R__FBSD >X+#include <sys/socket.h> >X+#endif >X #include <netinet/in.h> >X #endif >X #include <chrono> >1d3c0f176bbfc177c76046a01d41a0b1 >echo x - devel/root/files/patch-core_dictgen_src_rootcling__impl.cxx >sed 's/^X//' >devel/root/files/patch-core_dictgen_src_rootcling__impl.cxx << 'c50aded04df2f14de39bffe69a533908' >X--- core/dictgen/src/rootcling_impl.cxx.orig 2022-11-12 10:54:51.720688000 +0100 >X+++ core/dictgen/src/rootcling_impl.cxx 2022-11-12 10:55:07.269918000 +0100 >X@@ -191,7 +191,7 @@ >X #ifdef __APPLE__ >X exepath = _dyld_get_image_name(0); >X #endif >X-#if defined(__linux) || defined(__linux__) >X+#if defined(__linux) || defined(__linux__) || defined(R__FBSD) >X char linkname[PATH_MAX]; // /proc/<pid>/exe >X char buf[PATH_MAX]; // exe path name >X pid_t pid; >c50aded04df2f14de39bffe69a533908 >echo x - devel/root/files/patch-core_metacling_src_rootclingTCling.cxx >sed 's/^X//' >devel/root/files/patch-core_metacling_src_rootclingTCling.cxx << '3e7699b6391cb697bcedd4249f5bb95a' >X--- core/metacling/src/rootclingTCling.cxx.orig 2022-11-12 10:56:28.563535000 +0100 >X+++ core/metacling/src/rootclingTCling.cxx 2022-11-12 10:56:49.049417000 +0100 >X@@ -20,6 +20,11 @@ >X >X #undef R__DLLEXPORT >X >X+#ifdef __FreeBSD__ >X+char *__progname; >X+char **environ; >X+#endif >X+ >X #include "TROOT.h" >X #include "TCling.h" >X >3e7699b6391cb697bcedd4249f5bb95a >echo x - devel/root/files/patch-core_metacling_src_TCling.cxx >sed 's/^X//' >devel/root/files/patch-core_metacling_src_TCling.cxx << '4ffa4057275002cc90de5bb7c2dc5497' >X--- core/metacling/src/TCling.cxx.orig 2022-11-12 10:55:56.315725000 +0100 >X+++ core/metacling/src/TCling.cxx 2022-11-12 10:56:09.017696000 +0100 >X@@ -1249,6 +1249,8 @@ >X true >X #elif defined(R__MACOSX) >X true >X+#elif defined(R__FBSD) >X+ true >X #else // Windows >X false >X #endif >X@@ -3351,6 +3353,8 @@ >X dl_iterate_phdr(callback_for_dl_iterate_phdr, &newLibs); >X for (auto &&lib: newLibs) >X RegisterLoadedSharedLibrary(lib.c_str()); >X+#elif defined(R__FBSD) >X+ // do nothing >X #else >X Error("TCling::UpdateListOfLoadedSharedLibraries", >X "Platform not supported!"); >4ffa4057275002cc90de5bb7c2dc5497 >echo x - devel/root/files/patch-core_thread_src_TPosixThread.cxx >sed 's/^X//' >devel/root/files/patch-core_thread_src_TPosixThread.cxx << 'eee9b8f497582a36bf27eb6382e6135b' >X--- core/thread/src/TPosixThread.cxx.orig 2022-11-12 10:57:19.988609000 +0100 >X+++ core/thread/src/TPosixThread.cxx 2022-11-12 10:57:27.602587000 +0100 >X@@ -37,7 +37,7 @@ >X pthread_attr_init(attr); >X >X if (affinity >= 0) { >X- #ifdef R__MACOSX >X+ #if defined(R__MACOSX) || defined(R__FBSD) >X Warning("Run", "Affinity setting not yet implemented on MacOS"); >X #else >X cpu_set_t cpuset; >eee9b8f497582a36bf27eb6382e6135b >echo x - devel/root/files/patch-core_unix_src_TUnixSystem.cxx >sed 's/^X//' >devel/root/files/patch-core_unix_src_TUnixSystem.cxx << '296fa757513afbc3c01fa07bcc9558c2' >X--- core/unix/src/TUnixSystem.cxx.orig 2022-11-12 10:57:57.209982000 +0100 >X+++ core/unix/src/TUnixSystem.cxx 2022-11-12 10:58:13.570543000 +0100 >X@@ -180,7 +180,7 @@ >X # endif >X # define HAVE_DLADDR >X #endif >X-#if defined(R__MACOSX) >X+#if defined(R__MACOSX) || defined(R__FBSD) >X # define HAVE_BACKTRACE_SYMBOLS_FD >X # define HAVE_DLADDR >X #endif >296fa757513afbc3c01fa07bcc9558c2 >echo x - devel/root/files/patch-interpreter_cling_include_cling_libc.modulemap >sed 's/^X//' >devel/root/files/patch-interpreter_cling_include_cling_libc.modulemap << 'a1e431aa8b78b9bb4e76ccf711a0439f' >X--- interpreter/cling/include/cling/libc.modulemap.orig 2022-11-12 10:58:46.517617000 +0100 >X+++ interpreter/cling/include/cling/libc.modulemap 2022-11-12 10:58:56.065449000 +0100 >X@@ -70,5 +70,5 @@ >X // doesn't exist on some systems with unpatched glib 2.26+ >X module "xlocale.h" [system] [extern_c] { >X export * >X- header "xlocale.h" >X+ textual header "xlocale.h" >X } >a1e431aa8b78b9bb4e76ccf711a0439f >echo x - devel/root/files/patch-main_CMakeLists.txt >sed 's/^X//' >devel/root/files/patch-main_CMakeLists.txt << 'cbd153bc64639a37801cc06e84e6121c' >X--- main/CMakeLists.txt.orig 2022-11-23 21:41:56.926472000 +0100 >X+++ main/CMakeLists.txt 2022-11-23 21:42:23.229615000 +0100 >X@@ -70,8 +70,8 @@ >X else() >X set(absruntimedir \${CMAKE_INSTALL_PREFIX}/${runtimedir}) >X endif() >X-install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -m py_compile \$ENV{DESTDIR}${absruntimedir}/cmdLineUtils.py)") >X-install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -O -m py_compile \$ENV{DESTDIR}${absruntimedir}/cmdLineUtils.py)") >X+install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -m py_compile ${absruntimedir}/cmdLineUtils.py)") >X+install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE_Development_Main} -O -m py_compile ${absruntimedir}/cmdLineUtils.py)") >X configure_file(python/cmdLineUtils.py ${localruntimedir}/cmdLineUtils.py @ONLY) >X >X >cbd153bc64639a37801cc06e84e6121c >echo x - devel/root/Makefile >sed 's/^X//' >devel/root/Makefile << '3167710010d2662110a65a8e56acde0c' >XPORTNAME= root >XDISTVERSION= 6.26.06 >XCATEGORIES= devel science math parallel python >XDIST_SUBDIR= ${PORTNAME}-${DISTVERSION} >X >XMAINTAINER= erik@tenku.dk >XCOMMENT= Data analysis framework made at CERN >XWWW= https://root.cern/ >X >XLICENSE= LGPL21 >XLICENSE_FILE= ${WRKSRC}/LGPL2_1.txt >X >XONLY_FOR_ARCHS= amd64 >X >XBUILD_DEPENDS= bash:shells/bash \ >X git:devel/git \ >X ${PYNUMPY} >XLIB_DEPENDS= libAfterImage.so:graphics/libafterimage \ >X libXrdCl.so:databases/xrootd \ >X libcairo.so:graphics/cairo \ >X libcfitsio.so:astro/cfitsio \ >X libcurl.so:ftp/curl \ >X libfftw3.so:math/fftw3 \ >X libfreetype.so:print/freetype2 \ >X libgdk_pixbuf-2.0.so:graphics/gdk-pixbuf2 \ >X libgif.so:graphics/giflib \ >X libglib-2.0.so:devel/glib20 \ >X libgsl.so:math/gsl \ >X libjpeg.so:graphics/jpeg-turbo \ >X liblz4.so:archivers/liblz4 \ >X libpcre.so:devel/pcre \ >X libpng.so:graphics/png \ >X librsvg-2.so:graphics/librsvg2-rust \ >X libtbb.so:devel/onetbb \ >X libtiff.so:graphics/tiff \ >X libvdt.so:math/vdt \ >X libxcb-icccm.so:x11/xcb-util-wm \ >X libxcb-util.so:x11/xcb-util \ >X libxkbcommon.so:x11/libxkbcommon \ >X libxml2.so:textproc/libxml2 \ >X libzstd.so:archivers/zstd >X >XUSES= blaslapack:openblas \ >X cmake \ >X gettext-runtime \ >X gl \ >X iconv \ >X mysql:57 \ >X pgsql:13.0+ \ >X python:3.9+ \ >X shebangfix \ >X sqlite \ >X ssl \ >X xorg >XCMAKE_ON= gnuinstall soversion >XUSE_GITHUB= yes >XGH_ACCOUNT= root-project >XGH_TAGNAME= v6-26-06 >XUSE_GL= glew glu opengl >XUSE_GNOME= cairo gdkpixbuf2 glib20 librsvg2 >XUSE_LDCONFIG= ${PREFIX}/lib/root >XSHEBANG_FILES= etc/dictpch/makepch.py \ >X etc/proof/utils/circle.sh \ >X etc/proof/utils/crypt \ >X etc/proof/utils/proofinstall.sh \ >X etc/proof/utils/proofctl.sh \ >X etc/proof/utils/pps >XUSE_XORG= ice sm x11 xau xaw xcb xcomposite \ >X xcursor xdamage xdmcp xext xfixes \ >X xfont xfont2 xft xi xinerama \ >X xkbfile xmu xpm xrandr xrender \ >X xres xscrnsaver xt xv xxf86vm >X >XCONFIGURE_WRKSRC?= ${WRKDIR}/.build >XSTAGEDIR?= ${WRKDIR}/stage >XCMAKE_ARGS+= -DSTAGEDIR=${STAGEDIR} >XMAKE_ENV+= ROOTSYS=${CONFIGURE_WRKSRC} >X >X.include <bsd.port.mk> >3167710010d2662110a65a8e56acde0c >echo x - devel/root/pkg-descr >sed 's/^X//' >devel/root/pkg-descr << '0b71d5ceda6e0c4530899881ce444ec8' >XThe ROOT system provides a set of OO frameworks with all the functionality >Xneeded to handle and analyze large amounts of data in a very efficient way. >XHaving the data defined as a set of objects, specialized storage methods are >Xused to get direct access to the separate attributes of the selected objects, >Xwithout having to touch the bulk of the data. Included are histograming methods >Xin an arbitrary number of dimensions, curve fitting, function evaluation, >Xminimization, graphics and visualization classes to allow the easy setup of an >Xanalysis system that can query and process the data interactively or in batch >Xmode, as well as a general parallel processing framework, PROOF, that can >Xconsiderably speed up an analysis. >X >XThanks to the built-in C++ interpreter cling, the command, the scripting and >Xthe programming language are all C++. The interpreter allows for fast >Xprototyping of the macros since it removes the time consuming compile/link >Xcycle. It also provides a good environment to learn C++. If more performance >Xis needed the interactively developed macros can be compiled using a C++ >Xcompiler via a machine independent transparent compiler interface called ACliC. >X >XThe system has been designed in such a way that it can query its databases in >Xparallel on clusters of workstations or many-core machines. ROOT is an open >Xsystem that can be dynamically extended by linking external libraries. This >Xmakes ROOT a premier platform on which to build data acquisition, simulation >Xand data analysis systems. [Text copied from ROOT project's repo 2022-11-11.] >0b71d5ceda6e0c4530899881ce444ec8 >echo x - devel/root/pkg-message >sed 's/^X//' >devel/root/pkg-message << 'fa607639af6d67f2a86a5844388b7a31' >X2022-11-11: Currently, output such as >X "__cxa_thread_call_dtors: dtr 0x800330250 from unloaded dso, skipping" >Xwill be printed to stderr many times when/if building the port. >XAfter installation this type of message will also appear at least a couple of times when a compiled ROOT program (such as the ROOT command prompt) terminates. >X >XThese error messages are harmless, but can be quite annoying. >X >XTheir existence is known to and fairly well understood by the author, and he hopes that Bug 267671 reported on FreeBSD's Bugzilla, >X https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=267671 >Xwith a suggestion of how to fix the problem, will be seen and committed to the libc source code ASAP. >fa607639af6d67f2a86a5844388b7a31 >echo x - devel/root/pkg-plist >sed 's/^X//' >devel/root/pkg-plist << 'f3335670524c53630966f4b391579f8c' >Xbin/genreflex >Xbin/hadd >Xbin/hist2workspace >Xbin/prepareHistFactory >Xbin/proofserv >Xbin/proofserv.exe >Xbin/rmkdepend >Xbin/root >Xbin/root-config >Xbin/root.exe >Xbin/rootbrowse >Xbin/rootcint >Xbin/rootcling >Xbin/rootcp >Xbin/rootdrawtree >Xbin/rooteventselector >Xbin/rootls >Xbin/rootmkdir >Xbin/rootmv >Xbin/rootn.exe >Xbin/rootnb.exe >Xbin/rootprint >Xbin/rootrm >Xbin/roots >Xbin/roots.exe >Xbin/rootslimtree >Xbin/setxrd.csh >Xbin/setxrd.sh >Xbin/thisroot.csh >Xbin/thisroot.fish >Xbin/thisroot.sh >Xbin/xpdtest >Xetc/root/HistFactorySchema.dtd >Xetc/root/Makefile.arch >Xetc/root/RadioNuclides.txt >Xetc/root/RooFitHS3_wsexportkeys.json >Xetc/root/RooFitHS3_wsfactoryexpressions.json >Xetc/root/class.rules >Xetc/root/cling/Interpreter/DynamicExprInfo.h >Xetc/root/cling/Interpreter/DynamicLookupLifetimeHandler.h >Xetc/root/cling/Interpreter/DynamicLookupRuntimeUniverse.h >Xetc/root/cling/Interpreter/Exception.h >Xetc/root/cling/Interpreter/RuntimeOptions.h >Xetc/root/cling/Interpreter/RuntimePrintValue.h >Xetc/root/cling/Interpreter/RuntimeUniverse.h >Xetc/root/cling/Interpreter/Value.h >Xetc/root/cling/Interpreter/Visibility.h >Xetc/root/cling/boost.modulemap >Xetc/root/cling/cint/multimap >Xetc/root/cling/cint/multiset >Xetc/root/cling/cuda.modulemap >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_builtin_vars.h >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_cmath.h >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_complex_builtins.h >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_device_functions.h >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_intrinsics.h >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_libdevice_declares.h >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_math_forward_declares.h >Xetc/root/cling/lib/clang/9.0.1/include/__clang_cuda_runtime_wrapper.h >Xetc/root/cling/lib/clang/9.0.1/include/__stddef_max_align_t.h >Xetc/root/cling/lib/clang/9.0.1/include/__wmmintrin_aes.h >Xetc/root/cling/lib/clang/9.0.1/include/__wmmintrin_pclmul.h >Xetc/root/cling/lib/clang/9.0.1/include/adxintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/altivec.h >Xetc/root/cling/lib/clang/9.0.1/include/ammintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/arm64intr.h >Xetc/root/cling/lib/clang/9.0.1/include/arm_acle.h >Xetc/root/cling/lib/clang/9.0.1/include/arm_fp16.h >Xetc/root/cling/lib/clang/9.0.1/include/arm_neon.h >Xetc/root/cling/lib/clang/9.0.1/include/armintr.h >Xetc/root/cling/lib/clang/9.0.1/include/assert.h >Xetc/root/cling/lib/clang/9.0.1/include/avx2intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512bf16intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512bitalgintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512bwintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512cdintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512dqintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512erintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512fintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512ifmaintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512ifmavlintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512pfintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vbmi2intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vbmiintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vbmivlintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlbf16intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlbitalgintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlbwintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlcdintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vldqintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlvbmi2intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlvnniintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vlvp2intersectintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vnniintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vp2intersectintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vpopcntdqintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avx512vpopcntdqvlintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/avxintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/bmi2intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/bmiintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/cetintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/cldemoteintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/clflushoptintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/clwbintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/clzerointrin.h >Xetc/root/cling/lib/clang/9.0.1/include/cpuid.h >Xetc/root/cling/lib/clang/9.0.1/include/cuda_wrappers/algorithm >Xetc/root/cling/lib/clang/9.0.1/include/cuda_wrappers/complex >Xetc/root/cling/lib/clang/9.0.1/include/cuda_wrappers/new >Xetc/root/cling/lib/clang/9.0.1/include/emmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/enqcmdintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/f16cintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/float.h >Xetc/root/cling/lib/clang/9.0.1/include/fma4intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/fmaintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/fxsrintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/gfniintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/htmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/htmxlintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/ia32intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/immintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/inttypes.h >Xetc/root/cling/lib/clang/9.0.1/include/invpcidintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/iso646.h >Xetc/root/cling/lib/clang/9.0.1/include/limits.h >Xetc/root/cling/lib/clang/9.0.1/include/lwpintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/lzcntintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/mm3dnow.h >Xetc/root/cling/lib/clang/9.0.1/include/mm_malloc.h >Xetc/root/cling/lib/clang/9.0.1/include/mmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/module.modulemap >Xetc/root/cling/lib/clang/9.0.1/include/movdirintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/msa.h >Xetc/root/cling/lib/clang/9.0.1/include/mwaitxintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/nmmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/opencl-c-base.h >Xetc/root/cling/lib/clang/9.0.1/include/opencl-c.h >Xetc/root/cling/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math.h >Xetc/root/cling/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math_declares.h >Xetc/root/cling/lib/clang/9.0.1/include/openmp_wrappers/cmath >Xetc/root/cling/lib/clang/9.0.1/include/openmp_wrappers/math.h >Xetc/root/cling/lib/clang/9.0.1/include/pconfigintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/pkuintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/pmmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/popcntintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/ppc_wrappers/emmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/ppc_wrappers/mm_malloc.h >Xetc/root/cling/lib/clang/9.0.1/include/ppc_wrappers/mmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/ppc_wrappers/xmmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/prfchwintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/ptwriteintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/rdseedintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/rtmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/s390intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/sgxintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/shaintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/smmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/stdalign.h >Xetc/root/cling/lib/clang/9.0.1/include/stdarg.h >Xetc/root/cling/lib/clang/9.0.1/include/stdatomic.h >Xetc/root/cling/lib/clang/9.0.1/include/stdbool.h >Xetc/root/cling/lib/clang/9.0.1/include/stddef.h >Xetc/root/cling/lib/clang/9.0.1/include/stdint.h >Xetc/root/cling/lib/clang/9.0.1/include/stdlib.h >Xetc/root/cling/lib/clang/9.0.1/include/stdnoreturn.h >Xetc/root/cling/lib/clang/9.0.1/include/tbmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/tgmath.h >Xetc/root/cling/lib/clang/9.0.1/include/tmmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/unistd.h >Xetc/root/cling/lib/clang/9.0.1/include/unwind.h >Xetc/root/cling/lib/clang/9.0.1/include/vadefs.h >Xetc/root/cling/lib/clang/9.0.1/include/vaesintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/varargs.h >Xetc/root/cling/lib/clang/9.0.1/include/vecintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/vpclmulqdqintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/waitpkgintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/wbnoinvdintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/wchar.h >Xetc/root/cling/lib/clang/9.0.1/include/wmmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/x86intrin.h >Xetc/root/cling/lib/clang/9.0.1/include/xmmintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/xopintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/xsavecintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/xsaveintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/xsaveoptintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/xsavesintrin.h >Xetc/root/cling/lib/clang/9.0.1/include/xtestintrin.h >Xetc/root/cling/libc.modulemap >Xetc/root/cling/module.modulemap >Xetc/root/cling/std.modulemap >Xetc/root/cling/tinyxml2.modulemap >Xetc/root/cling/vc.modulemap >Xetc/root/dictpch/makepch.py >Xetc/root/gdb-backtrace.sh >Xetc/root/helgrind-root.supp >Xetc/root/html/HELP.html >Xetc/root/html/ROOT.css >Xetc/root/html/ROOT.js >Xetc/root/html/footer.html >Xetc/root/html/header.html >Xetc/root/html/saveScriptOutput.C >Xetc/root/html/shadow.gif >Xetc/root/html/shadowAlpha.png >Xetc/root/lsan-root.supp >Xetc/root/notebook/JsMVA/css/NetworkDesigner.css >Xetc/root/notebook/JsMVA/css/NetworkDesigner.min.css >Xetc/root/notebook/JsMVA/css/TMVAHTMLOutput.css >Xetc/root/notebook/JsMVA/css/TMVAHTMLOutput.min.css >Xetc/root/notebook/JsMVA/js/DecisionTree.js >Xetc/root/notebook/JsMVA/js/DecisionTree.min.js >Xetc/root/notebook/JsMVA/js/JsMVA.js >Xetc/root/notebook/JsMVA/js/JsMVA.min.js >Xetc/root/notebook/JsMVA/js/NetworkDesigner.js >Xetc/root/notebook/JsMVA/js/NetworkDesigner.min.js >Xetc/root/notebook/JsMVA/js/NeuralNetwork.js >Xetc/root/notebook/JsMVA/js/NeuralNetwork.min.js >Xetc/root/notebook/custom/custom.css >Xetc/root/notebook/custom/custom.js >Xetc/root/notebook/custom/root-banner_99x33.jpg >Xetc/root/notebook/custom/root-logo-darkblue_33x33.png >Xetc/root/notebook/html/sample_config.py >Xetc/root/notebook/html/templates/root_notebook.tpl >Xetc/root/notebook/jupyter_notebook_config.py >Xetc/root/notebook/kernels/root/kernel.json >Xetc/root/notebook/kernels/root/logo-64x64.png >Xetc/root/pdg_table.txt >Xetc/root/plugins/ROOT@@Internal@@RRawFile/P010_RRawFileDavix.C >Xetc/root/plugins/ROOT@@Internal@@RRawFile/P020_RRawFileNetXNG.C >Xetc/root/plugins/ROOT@@Math@@DistSampler/P010_TUnuranSampler.C >Xetc/root/plugins/ROOT@@Math@@DistSampler/P020_TFoamSampler.C >Xetc/root/plugins/ROOT@@Math@@IRootFinderMethod/P010_Brent.C >Xetc/root/plugins/ROOT@@Math@@IRootFinderMethod/P020_Bisection.C >Xetc/root/plugins/ROOT@@Math@@IRootFinderMethod/P030_FalsePos.C >Xetc/root/plugins/ROOT@@Math@@IRootFinderMethod/P040_Newton.C >Xetc/root/plugins/ROOT@@Math@@IRootFinderMethod/P050_Secant.C >Xetc/root/plugins/ROOT@@Math@@IRootFinderMethod/P060_Steffenson.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P010_Minuit2Minimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P020_TMinuitMinimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P030_GSLMinimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P040_GSLNLSMinimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P050_GSLSimAnMinimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P060_TLinearMinimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P070_TFumiliMinimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P080_GeneticMinimizer.C >Xetc/root/plugins/ROOT@@Math@@Minimizer/P090_RMinimizer.C >Xetc/root/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C >Xetc/root/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C >Xetc/root/plugins/TApplication/P010_TApplicationRemote.C >Xetc/root/plugins/TApplication/P020_TApplicationServer.C >Xetc/root/plugins/TArchiveFile/P010_TZIPFile.C >Xetc/root/plugins/TBrowserImp/P010_TRootBrowser.C >Xetc/root/plugins/TBrowserImp/P020_TRootBrowserLite.C >Xetc/root/plugins/TBrowserImp/P030_RWebBrowserImp.C >Xetc/root/plugins/TChain/P010_TProofChain.C >Xetc/root/plugins/TDataSetManager/P010_TDataSetManagerFile.C >Xetc/root/plugins/TDataSetManager/P020_TDataSetManagerAliEn.C >Xetc/root/plugins/TFile/P010_TWebFile.C >Xetc/root/plugins/TFile/P040_TDCacheFile.C >Xetc/root/plugins/TFile/P050_TGFALFile.C >Xetc/root/plugins/TFile/P070_TAlienFile.C >Xetc/root/plugins/TFile/P080_TXMLFile.C >Xetc/root/plugins/TFile/P090_TSQLFile.C >Xetc/root/plugins/TFile/P100_TXNetFile.C >Xetc/root/plugins/TFile/P120_TNetFile.C >Xetc/root/plugins/TFile/P130_TDavixFile.C >Xetc/root/plugins/TFile/P150_TS3WebFile.C >Xetc/root/plugins/TFileDrawMap/P010_TFileDrawMap.C >Xetc/root/plugins/TFileStager/P010_TXNetFileStager.C >Xetc/root/plugins/TFileStager/P020_TNetFileStager.C >Xetc/root/plugins/TFitEditor/P010_TFitEditor.C >Xetc/root/plugins/TGLHistPainter/P010_TGLHistPainter.C >Xetc/root/plugins/TGLManager/P010_TX11GLManager.C >Xetc/root/plugins/TGLManager/P020_TGWin32GLManager.C >Xetc/root/plugins/TGLManager/P030_TGOSXGLManager.C >Xetc/root/plugins/TGPasswdDialog/P010_TGPasswdDialog.C >Xetc/root/plugins/TGeoManagerEditor/P010_TGeoManagerEditor.C >Xetc/root/plugins/TGrid/P010_TAlien.C >Xetc/root/plugins/TGuiBuilder/P010_TRootGuiBuilder.C >Xetc/root/plugins/TGuiFactory/P010_TRootGuiFactory.C >Xetc/root/plugins/TGuiFactory/P030_TWebGuiFactory.C >Xetc/root/plugins/TImage/P010_TASImage.C >Xetc/root/plugins/TImagePlugin/P010_TASPluginGS.C >Xetc/root/plugins/TMinuitGraph/P010_TGraph.C >Xetc/root/plugins/TPaletteEditor/P010_TASPaletteEditor.C >Xetc/root/plugins/TProof/P010_TProofCondor.C >Xetc/root/plugins/TProof/P020_TProofSuperMaster.C >Xetc/root/plugins/TProof/P030_TProofLite.C >Xetc/root/plugins/TProof/P040_TProof.C >Xetc/root/plugins/TProofMgr/P010_TXProofMgr.C >Xetc/root/plugins/TProofMonSender/P010_TProofMonSenderML.C >Xetc/root/plugins/TProofMonSender/P020_TProofMonSenderSQL.C >Xetc/root/plugins/TProofProgressDialog/P010_TProofProgressDialog.C >Xetc/root/plugins/TProofProgressLog/P010_TProofProgressLog.C >Xetc/root/plugins/TProofServ/P010_TXProofServ.C >Xetc/root/plugins/TSQLServer/P010_TMySQLServer.C >Xetc/root/plugins/TSQLServer/P020_TPgSQLServer.C >Xetc/root/plugins/TSQLServer/P040_TOracleServer.C >Xetc/root/plugins/TSQLServer/P050_TODBCServer.C >Xetc/root/plugins/TSQLServer/P060_TSQLiteServer.C >Xetc/root/plugins/TSessionViewer/P010_TSessionViewer.C >Xetc/root/plugins/TSlave/P010_TXSlave.C >Xetc/root/plugins/TSystem/P020_TDCacheSystem.C >Xetc/root/plugins/TSystem/P030_TAlienSystem.C >Xetc/root/plugins/TSystem/P040_TXNetSystem.C >Xetc/root/plugins/TSystem/P045_TDavixSystem.C >Xetc/root/plugins/TSystem/P050_TWebSystem.C >Xetc/root/plugins/TSystem/P070_TNetSystem.C >Xetc/root/plugins/TView/P010_TView3D.C >Xetc/root/plugins/TViewerX3D/P010_TViewerX3D.C >Xetc/root/plugins/TVirtualAuth/P010_TRootAuth.C >Xetc/root/plugins/TVirtualDragManager/P010_TGuiBldDragManager.C >Xetc/root/plugins/TVirtualFFT/P010_TFFTComplex.C >Xetc/root/plugins/TVirtualFFT/P020_TFFTComplexReal.C >Xetc/root/plugins/TVirtualFFT/P030_TFFTRealComplex.C >Xetc/root/plugins/TVirtualFFT/P040_TFFTReal.C >Xetc/root/plugins/TVirtualFitter/P010_TFitter.C >Xetc/root/plugins/TVirtualFitter/P020_TFumili.C >Xetc/root/plugins/TVirtualFitter/P030_TFitterMinuit.C >Xetc/root/plugins/TVirtualFitter/P040_TFitterFumili.C >Xetc/root/plugins/TVirtualGLImp/P010_TX11GL.C >Xetc/root/plugins/TVirtualGLImp/P020_TGWin32GL.C >Xetc/root/plugins/TVirtualGeoConverter/P010_TGeoVGConverter.C >Xetc/root/plugins/TVirtualGeoPainter/P010_TGeoPainter.C >Xetc/root/plugins/TVirtualGeoPainter/P020_REveGeoPainter.C >Xetc/root/plugins/TVirtualGraphPainter/P010_TGraphPainter.C >Xetc/root/plugins/TVirtualHistPainter/P010_THistPainter.C >Xetc/root/plugins/TVirtualMonitoringWriter/P010_TMonaLisaWriter.C >Xetc/root/plugins/TVirtualMonitoringWriter/P020_TSQLMonitoringWriter.C >Xetc/root/plugins/TVirtualPS/P010_TPostScript.C >Xetc/root/plugins/TVirtualPS/P020_TSVG.C >Xetc/root/plugins/TVirtualPS/P030_TPDF.C >Xetc/root/plugins/TVirtualPS/P040_TImageDump.C >Xetc/root/plugins/TVirtualPS/P050_TTeXDump.C >Xetc/root/plugins/TVirtualPad/P010_TPad.C >Xetc/root/plugins/TVirtualPadEditor/P010_TGedEditor.C >Xetc/root/plugins/TVirtualPadPainter/P010_TGLPadPainter.C >Xetc/root/plugins/TVirtualProofPlayer/P010_TProofPlayer.C >Xetc/root/plugins/TVirtualProofPlayer/P020_TProofPlayerRemote.C >Xetc/root/plugins/TVirtualProofPlayer/P030_TProofPlayerLocal.C >Xetc/root/plugins/TVirtualProofPlayer/P040_TProofPlayerSlave.C >Xetc/root/plugins/TVirtualProofPlayer/P050_TProofPlayerSuperMaster.C >Xetc/root/plugins/TVirtualProofPlayer/P060_TProofPlayerLite.C >Xetc/root/plugins/TVirtualStreamerInfo/P010_TStreamerInfo.C >Xetc/root/plugins/TVirtualTreePlayer/P010_TTreePlayer.C >Xetc/root/plugins/TVirtualTreeViewer/P010_TTreeViewer.C >Xetc/root/plugins/TVirtualViewer3D/P010_TVirtualViewerX3D.C >Xetc/root/plugins/TVirtualViewer3D/P020_TGLSAViewer.C >Xetc/root/plugins/TVirtualViewer3D/P030_TGLViewer.C >Xetc/root/plugins/TVirtualX/P010_TGX11.C >Xetc/root/plugins/TVirtualX/P020_TGX11TTF.C >Xetc/root/plugins/TVirtualX/P030_TGWin32.C >Xetc/root/plugins/TVirtualX/P050_TGQuartz.C >Xetc/root/proof/cluster.conf.sample >Xetc/root/proof/motd.sample >Xetc/root/proof/noproof.sample >Xetc/root/proof/proof.conf.sample >Xetc/root/proof/proofbench/ProofBenchCPUSel.par >Xetc/root/proof/proofbench/ProofBenchDataSel.par >Xetc/root/proof/proofbench/README >Xetc/root/proof/rootnetrc.sample >Xetc/root/proof/utils/circle.sh >Xetc/root/proof/utils/crypt >Xetc/root/proof/utils/makepbenchpars.sh >Xetc/root/proof/utils/pcmd >Xetc/root/proof/utils/pload >Xetc/root/proof/utils/pps >Xetc/root/proof/utils/proof-facility >Xetc/root/proof/utils/proofctl.sh >Xetc/root/proof/utils/proofinstall.sh >Xetc/root/proof/utils/push >Xetc/root/proof/xpd.cf.sample >Xetc/root/proof/xpd.groups.sample >Xetc/root/root.desktop >Xetc/root/root.mimes >Xetc/root/system.rootauthrc >Xetc/root/system.rootdaemonrc >Xetc/root/system.rootrc >Xetc/root/valgrind-root-python.supp >Xetc/root/valgrind-root.supp >Xinclude/root/AuthConst.h >Xinclude/root/BracketAdapters.h >Xinclude/root/Bswapcpy.h >Xinclude/root/Buttons.h >Xinclude/root/Bytes.h >Xinclude/root/Byteswap.h >Xinclude/root/CPyCppyy/API.h >Xinclude/root/CPyCppyy/CommonDefs.h >Xinclude/root/CPyCppyy/DispatchPtr.h >Xinclude/root/CPyCppyy/PyException.h >Xinclude/root/CPyCppyy/PyResult.h >Xinclude/root/Compression.h >Xinclude/root/CsgOps.h >Xinclude/root/DllImport.h >Xinclude/root/ESTLType.h >Xinclude/root/FTBBox.h >Xinclude/root/FTBitmapGlyph.h >Xinclude/root/FTCharToGlyphIndexMap.h >Xinclude/root/FTCharmap.h >Xinclude/root/FTContour.h >Xinclude/root/FTExtrdGlyph.h >Xinclude/root/FTFace.h >Xinclude/root/FTFont.h >Xinclude/root/FTGL.h >Xinclude/root/FTGLBitmapFont.h >Xinclude/root/FTGLExtrdFont.h >Xinclude/root/FTGLOutlineFont.h >Xinclude/root/FTGLPixmapFont.h >Xinclude/root/FTGLPolygonFont.h >Xinclude/root/FTGLTextureFont.h >Xinclude/root/FTGlyph.h >Xinclude/root/FTGlyphContainer.h >Xinclude/root/FTLibrary.h >Xinclude/root/FTList.h >Xinclude/root/FTOutlineGlyph.h >Xinclude/root/FTPixmapGlyph.h >Xinclude/root/FTPoint.h >Xinclude/root/FTPolyGlyph.h >Xinclude/root/FTSize.h >Xinclude/root/FTTextureGlyph.h >Xinclude/root/FTVector.h >Xinclude/root/FTVectoriser.h >Xinclude/root/Fit/BasicFCN.h >Xinclude/root/Fit/BinData.h >Xinclude/root/Fit/Chi2FCN.h >Xinclude/root/Fit/DataOptions.h >Xinclude/root/Fit/DataRange.h >Xinclude/root/Fit/FcnAdapter.h >Xinclude/root/Fit/FitConfig.h >Xinclude/root/Fit/FitData.h >Xinclude/root/Fit/FitExecutionPolicy.h >Xinclude/root/Fit/FitResult.h >Xinclude/root/Fit/FitUtil.h >Xinclude/root/Fit/Fitter.h >Xinclude/root/Fit/LogLikelihoodFCN.h >Xinclude/root/Fit/ParameterSettings.h >Xinclude/root/Fit/PoissonLikelihoodFCN.h >Xinclude/root/Fit/SparseData.h >Xinclude/root/Fit/UnBinData.h >Xinclude/root/Foption.h >Xinclude/root/GLConstants.h >Xinclude/root/Getline.h >Xinclude/root/Gtypes.h >Xinclude/root/GuiTypes.h >Xinclude/root/HFMsgService.h >Xinclude/root/HFitInterface.h >Xinclude/root/HelpSMText.h >Xinclude/root/HelpText.h >Xinclude/root/HelpTextTV.h >Xinclude/root/Hepevt.h >Xinclude/root/Hoption.h >Xinclude/root/Hparam.h >Xinclude/root/Htypes.h >Xinclude/root/KeySymbols.h >Xinclude/root/MPCode.h >Xinclude/root/MPSendRecv.h >Xinclude/root/Match.h >Xinclude/root/Math/AdaptiveIntegratorMultiDim.h >Xinclude/root/Math/AllIntegrationTypes.h >Xinclude/root/Math/AxisAngle.h >Xinclude/root/Math/BasicMinimizer.h >Xinclude/root/Math/BinaryOpPolicy.h >Xinclude/root/Math/BinaryOperators.h >Xinclude/root/Math/Boost.h >Xinclude/root/Math/BoostX.h >Xinclude/root/Math/BoostY.h >Xinclude/root/Math/BoostZ.h >Xinclude/root/Math/BrentMethods.h >Xinclude/root/Math/BrentMinimizer1D.h >Xinclude/root/Math/BrentRootFinder.h >Xinclude/root/Math/Cartesian2D.h >Xinclude/root/Math/Cartesian3D.h >Xinclude/root/Math/ChebyshevApprox.h >Xinclude/root/Math/ChebyshevPol.h >Xinclude/root/Math/CholeskyDecomp.h >Xinclude/root/Math/CladDerivator.h >Xinclude/root/Math/CramerInversion.icc >Xinclude/root/Math/CramerInversionSym.icc >Xinclude/root/Math/Cylindrical3D.h >Xinclude/root/Math/CylindricalEta3D.h >Xinclude/root/Math/Delaunay2D.h >Xinclude/root/Math/Derivator.h >Xinclude/root/Math/Dfact.h >Xinclude/root/Math/Dfactir.h >Xinclude/root/Math/Dfinv.h >Xinclude/root/Math/Dinv.h >Xinclude/root/Math/DisplacementVector2D.h >Xinclude/root/Math/DisplacementVector3D.h >Xinclude/root/Math/DistFunc.h >Xinclude/root/Math/DistFuncMathCore.h >Xinclude/root/Math/DistFuncMathMore.h >Xinclude/root/Math/DistSampler.h >Xinclude/root/Math/DistSamplerOptions.h >Xinclude/root/Math/Dsfact.h >Xinclude/root/Math/Dsinv.h >Xinclude/root/Math/Error.h >Xinclude/root/Math/EulerAngles.h >Xinclude/root/Math/Expression.h >Xinclude/root/Math/Factory.h >Xinclude/root/Math/FitMethodFunction.h >Xinclude/root/Math/Functions.h >Xinclude/root/Math/Functor.h >Xinclude/root/Math/GSLFunctionAdapter.h >Xinclude/root/Math/GSLIntegrator.h >Xinclude/root/Math/GSLMCIntegrator.h >Xinclude/root/Math/GSLMinimizer.h >Xinclude/root/Math/GSLMinimizer1D.h >Xinclude/root/Math/GSLMultiRootFinder.h >Xinclude/root/Math/GSLNLSMinimizer.h >Xinclude/root/Math/GSLQuasiRandom.h >Xinclude/root/Math/GSLRandom.h >Xinclude/root/Math/GSLRandomFunctions.h >Xinclude/root/Math/GSLRndmEngines.h >Xinclude/root/Math/GSLRootFinder.h >Xinclude/root/Math/GSLRootFinderDeriv.h >Xinclude/root/Math/GSLRootHelper.h >Xinclude/root/Math/GSLSimAnMinimizer.h >Xinclude/root/Math/GSLSimAnnealing.h >Xinclude/root/Math/GaussIntegrator.h >Xinclude/root/Math/GaussLegendreIntegrator.h >Xinclude/root/Math/GenAlgoOptions.h >Xinclude/root/Math/GenVector/3DConversions.h >Xinclude/root/Math/GenVector/3DDistances.h >Xinclude/root/Math/GenVector/AxisAngle.h >Xinclude/root/Math/GenVector/AxisAnglefwd.h >Xinclude/root/Math/GenVector/BitReproducible.h >Xinclude/root/Math/GenVector/Boost.h >Xinclude/root/Math/GenVector/BoostX.h >Xinclude/root/Math/GenVector/BoostXfwd.h >Xinclude/root/Math/GenVector/BoostY.h >Xinclude/root/Math/GenVector/BoostYfwd.h >Xinclude/root/Math/GenVector/BoostZ.h >Xinclude/root/Math/GenVector/BoostZfwd.h >Xinclude/root/Math/GenVector/Boostfwd.h >Xinclude/root/Math/GenVector/Cartesian2D.h >Xinclude/root/Math/GenVector/Cartesian2Dfwd.h >Xinclude/root/Math/GenVector/Cartesian3D.h >Xinclude/root/Math/GenVector/Cartesian3Dfwd.h >Xinclude/root/Math/GenVector/CoordinateSystemTags.h >Xinclude/root/Math/GenVector/Cylindrical3D.h >Xinclude/root/Math/GenVector/Cylindrical3Dfwd.h >Xinclude/root/Math/GenVector/CylindricalEta3D.h >Xinclude/root/Math/GenVector/CylindricalEta3Dfwd.h >Xinclude/root/Math/GenVector/DisplacementVector2D.h >Xinclude/root/Math/GenVector/DisplacementVector2Dfwd.h >Xinclude/root/Math/GenVector/DisplacementVector3D.h >Xinclude/root/Math/GenVector/DisplacementVector3Dfwd.h >Xinclude/root/Math/GenVector/EulerAngles.h >Xinclude/root/Math/GenVector/EulerAnglesfwd.h >Xinclude/root/Math/GenVector/GenVectorIO.h >Xinclude/root/Math/GenVector/GenVector_exception.h >Xinclude/root/Math/GenVector/LorentzRotation.h >Xinclude/root/Math/GenVector/LorentzRotationfwd.h >Xinclude/root/Math/GenVector/LorentzVector.h >Xinclude/root/Math/GenVector/LorentzVectorfwd.h >Xinclude/root/Math/GenVector/Plane3D.h >Xinclude/root/Math/GenVector/Polar2D.h >Xinclude/root/Math/GenVector/Polar2Dfwd.h >Xinclude/root/Math/GenVector/Polar3D.h >Xinclude/root/Math/GenVector/Polar3Dfwd.h >Xinclude/root/Math/GenVector/PositionVector2D.h >Xinclude/root/Math/GenVector/PositionVector2Dfwd.h >Xinclude/root/Math/GenVector/PositionVector3D.h >Xinclude/root/Math/GenVector/PositionVector3Dfwd.h >Xinclude/root/Math/GenVector/PtEtaPhiE4D.h >Xinclude/root/Math/GenVector/PtEtaPhiE4Dfwd.h >Xinclude/root/Math/GenVector/PtEtaPhiM4D.h >Xinclude/root/Math/GenVector/PtEtaPhiM4Dfwd.h >Xinclude/root/Math/GenVector/PxPyPzE4D.h >Xinclude/root/Math/GenVector/PxPyPzE4Dfwd.h >Xinclude/root/Math/GenVector/PxPyPzM4D.h >Xinclude/root/Math/GenVector/PxPyPzM4Dfwd.h >Xinclude/root/Math/GenVector/Quaternion.h >Xinclude/root/Math/GenVector/Quaternionfwd.h >Xinclude/root/Math/GenVector/Rotation3D.h >Xinclude/root/Math/GenVector/Rotation3Dfwd.h >Xinclude/root/Math/GenVector/RotationX.h >Xinclude/root/Math/GenVector/RotationXfwd.h >Xinclude/root/Math/GenVector/RotationY.h >Xinclude/root/Math/GenVector/RotationYfwd.h >Xinclude/root/Math/GenVector/RotationZ.h >Xinclude/root/Math/GenVector/RotationZYX.h >Xinclude/root/Math/GenVector/RotationZYXfwd.h >Xinclude/root/Math/GenVector/RotationZfwd.h >Xinclude/root/Math/GenVector/Transform3D.h >Xinclude/root/Math/GenVector/Translation3D.h >Xinclude/root/Math/GenVector/VectorUtil.h >Xinclude/root/Math/GenVector/eta.h >Xinclude/root/Math/GenVector/etaMax.h >Xinclude/root/Math/GeneticMinimizer.h >Xinclude/root/Math/GoFTest.h >Xinclude/root/Math/HelperOps.h >Xinclude/root/Math/IFunction.h >Xinclude/root/Math/IFunctionfwd.h >Xinclude/root/Math/IMinimizer1D.h >Xinclude/root/Math/IOptions.h >Xinclude/root/Math/IParamFunction.h >Xinclude/root/Math/IParamFunctionfwd.h >Xinclude/root/Math/IRootFinderMethod.h >Xinclude/root/Math/IntegrationTypes.h >Xinclude/root/Math/Integrator.h >Xinclude/root/Math/IntegratorMultiDim.h >Xinclude/root/Math/IntegratorOptions.h >Xinclude/root/Math/InterpolationTypes.h >Xinclude/root/Math/Interpolator.h >Xinclude/root/Math/KDTree.h >Xinclude/root/Math/KDTree.icc >Xinclude/root/Math/KelvinFunctions.h >Xinclude/root/Math/LCGEngine.h >Xinclude/root/Math/LorentzRotation.h >Xinclude/root/Math/LorentzVector.h >Xinclude/root/Math/MCIntegrationTypes.h >Xinclude/root/Math/MCParameters.h >Xinclude/root/Math/MConfig.h >Xinclude/root/Math/Math.h >Xinclude/root/Math/MatrixFunctions.h >Xinclude/root/Math/MatrixInversion.icc >Xinclude/root/Math/MatrixRepresentationsStatic.h >Xinclude/root/Math/MersenneTwisterEngine.h >Xinclude/root/Math/MinimTransformFunction.h >Xinclude/root/Math/MinimTransformVariable.h >Xinclude/root/Math/Minimizer.h >Xinclude/root/Math/MinimizerOptions.h >Xinclude/root/Math/MinimizerVariableTransformation.h >Xinclude/root/Math/MixMaxEngine.h >Xinclude/root/Math/MixMaxEngine.icc >Xinclude/root/Math/MultiDimParamFunctionAdapter.h >Xinclude/root/Math/MultiNumGradFunction.h >Xinclude/root/Math/MultiRootFinder.h >Xinclude/root/Math/OneDimFunctionAdapter.h >Xinclude/root/Math/ParamFunction.h >Xinclude/root/Math/ParamFunctor.h >Xinclude/root/Math/PdfFunc.h >Xinclude/root/Math/PdfFuncMathCore.h >Xinclude/root/Math/PdfFuncMathMore.h >Xinclude/root/Math/Plane3D.h >Xinclude/root/Math/Point2D.h >Xinclude/root/Math/Point2Dfwd.h >Xinclude/root/Math/Point3D.h >Xinclude/root/Math/Point3Dfwd.h >Xinclude/root/Math/Polar2D.h >Xinclude/root/Math/Polar3D.h >Xinclude/root/Math/Polynomial.h >Xinclude/root/Math/PositionVector2D.h >Xinclude/root/Math/PositionVector3D.h >Xinclude/root/Math/ProbFunc.h >Xinclude/root/Math/ProbFuncMathCore.h >Xinclude/root/Math/PtEtaPhiE4D.h >Xinclude/root/Math/PtEtaPhiM4D.h >Xinclude/root/Math/PxPyPzE4D.h >Xinclude/root/Math/PxPyPzM4D.h >Xinclude/root/Math/QuantFunc.h >Xinclude/root/Math/QuantFuncMathCore.h >Xinclude/root/Math/QuantFuncMathMore.h >Xinclude/root/Math/QuasiRandom.h >Xinclude/root/Math/Quaternion.h >Xinclude/root/Math/Random.h >Xinclude/root/Math/RandomFunctions.h >Xinclude/root/Math/RanluxppEngine.h >Xinclude/root/Math/RichardsonDerivator.h >Xinclude/root/Math/RootFinder.h >Xinclude/root/Math/RootFinderAlgorithms.h >Xinclude/root/Math/Rotation3D.h >Xinclude/root/Math/RotationX.h >Xinclude/root/Math/RotationY.h >Xinclude/root/Math/RotationZ.h >Xinclude/root/Math/RotationZYX.h >Xinclude/root/Math/SMatrix.h >Xinclude/root/Math/SMatrix.icc >Xinclude/root/Math/SMatrixDfwd.h >Xinclude/root/Math/SMatrixFfwd.h >Xinclude/root/Math/SVector.h >Xinclude/root/Math/SVector.icc >Xinclude/root/Math/SpecFunc.h >Xinclude/root/Math/SpecFuncMathCore.h >Xinclude/root/Math/SpecFuncMathMore.h >Xinclude/root/Math/StaticCheck.h >Xinclude/root/Math/StdEngine.h >Xinclude/root/Math/TDataPoint.h >Xinclude/root/Math/TDataPoint.icc >Xinclude/root/Math/TDataPointN.h >Xinclude/root/Math/TDataPointN.icc >Xinclude/root/Math/TRandomEngine.h >Xinclude/root/Math/Transform3D.h >Xinclude/root/Math/Translation3D.h >Xinclude/root/Math/Types.h >Xinclude/root/Math/UnaryOperators.h >Xinclude/root/Math/Util.h >Xinclude/root/Math/Vavilov.h >Xinclude/root/Math/VavilovAccurate.h >Xinclude/root/Math/VavilovAccurateCdf.h >Xinclude/root/Math/VavilovAccuratePdf.h >Xinclude/root/Math/VavilovAccurateQuantile.h >Xinclude/root/Math/VavilovFast.h >Xinclude/root/Math/Vector2D.h >Xinclude/root/Math/Vector2Dfwd.h >Xinclude/root/Math/Vector3D.h >Xinclude/root/Math/Vector3Dfwd.h >Xinclude/root/Math/Vector4D.h >Xinclude/root/Math/Vector4Dfwd.h >Xinclude/root/Math/VectorUtil.h >Xinclude/root/Math/VirtualIntegrator.h >Xinclude/root/Math/WrappedFunction.h >Xinclude/root/Math/WrappedMultiTF1.h >Xinclude/root/Math/WrappedParamFunction.h >Xinclude/root/Math/WrappedTF1.h >Xinclude/root/MessageTypes.h >Xinclude/root/Minuit2/ABObj.h >Xinclude/root/Minuit2/ABProd.h >Xinclude/root/Minuit2/ABSum.h >Xinclude/root/Minuit2/ABTypes.h >Xinclude/root/Minuit2/AnalyticalGradientCalculator.h >Xinclude/root/Minuit2/BFGSErrorUpdator.h >Xinclude/root/Minuit2/CombinedMinimizer.h >Xinclude/root/Minuit2/CombinedMinimumBuilder.h >Xinclude/root/Minuit2/ContoursError.h >Xinclude/root/Minuit2/DavidonErrorUpdator.h >Xinclude/root/Minuit2/ExternalInternalGradientCalculator.h >Xinclude/root/Minuit2/FCNAdapter.h >Xinclude/root/Minuit2/FCNBase.h >Xinclude/root/Minuit2/FCNGradAdapter.h >Xinclude/root/Minuit2/FCNGradientBase.h >Xinclude/root/Minuit2/FumiliBuilder.h >Xinclude/root/Minuit2/FumiliChi2FCN.h >Xinclude/root/Minuit2/FumiliErrorUpdator.h >Xinclude/root/Minuit2/FumiliFCNAdapter.h >Xinclude/root/Minuit2/FumiliFCNBase.h >Xinclude/root/Minuit2/FumiliGradientCalculator.h >Xinclude/root/Minuit2/FumiliMaximumLikelihoodFCN.h >Xinclude/root/Minuit2/FumiliMinimizer.h >Xinclude/root/Minuit2/FumiliStandardChi2FCN.h >Xinclude/root/Minuit2/FumiliStandardMaximumLikelihoodFCN.h >Xinclude/root/Minuit2/FunctionGradient.h >Xinclude/root/Minuit2/FunctionMinimizer.h >Xinclude/root/Minuit2/FunctionMinimum.h >Xinclude/root/Minuit2/GenericFunction.h >Xinclude/root/Minuit2/GradientCalculator.h >Xinclude/root/Minuit2/HessianGradientCalculator.h >Xinclude/root/Minuit2/InitialGradientCalculator.h >Xinclude/root/Minuit2/LASymMatrix.h >Xinclude/root/Minuit2/LAVector.h >Xinclude/root/Minuit2/LaInverse.h >Xinclude/root/Minuit2/LaOuterProduct.h >Xinclude/root/Minuit2/LaProd.h >Xinclude/root/Minuit2/LaSum.h >Xinclude/root/Minuit2/MPIProcess.h >Xinclude/root/Minuit2/MatrixInverse.h >Xinclude/root/Minuit2/MinimumBuilder.h >Xinclude/root/Minuit2/MinimumError.h >Xinclude/root/Minuit2/MinimumErrorUpdator.h >Xinclude/root/Minuit2/MinimumParameters.h >Xinclude/root/Minuit2/MinimumSeed.h >Xinclude/root/Minuit2/MinimumSeedGenerator.h >Xinclude/root/Minuit2/MinimumState.h >Xinclude/root/Minuit2/MinosError.h >Xinclude/root/Minuit2/Minuit2Minimizer.h >Xinclude/root/Minuit2/MinuitParameter.h >Xinclude/root/Minuit2/MnApplication.h >Xinclude/root/Minuit2/MnConfig.h >Xinclude/root/Minuit2/MnContours.h >Xinclude/root/Minuit2/MnCovarianceSqueeze.h >Xinclude/root/Minuit2/MnCross.h >Xinclude/root/Minuit2/MnEigen.h >Xinclude/root/Minuit2/MnFcn.h >Xinclude/root/Minuit2/MnFumiliMinimize.h >Xinclude/root/Minuit2/MnFunctionCross.h >Xinclude/root/Minuit2/MnGlobalCorrelationCoeff.h >Xinclude/root/Minuit2/MnHesse.h >Xinclude/root/Minuit2/MnLineSearch.h >Xinclude/root/Minuit2/MnMachinePrecision.h >Xinclude/root/Minuit2/MnMatrix.h >Xinclude/root/Minuit2/MnMigrad.h >Xinclude/root/Minuit2/MnMinimize.h >Xinclude/root/Minuit2/MnMinos.h >Xinclude/root/Minuit2/MnParabola.h >Xinclude/root/Minuit2/MnParabolaFactory.h >Xinclude/root/Minuit2/MnParabolaPoint.h >Xinclude/root/Minuit2/MnParameterScan.h >Xinclude/root/Minuit2/MnPlot.h >Xinclude/root/Minuit2/MnPosDef.h >Xinclude/root/Minuit2/MnPrint.h >Xinclude/root/Minuit2/MnRefCountedPointer.h >Xinclude/root/Minuit2/MnReferenceCounter.h >Xinclude/root/Minuit2/MnScan.h >Xinclude/root/Minuit2/MnSeedGenerator.h >Xinclude/root/Minuit2/MnSimplex.h >Xinclude/root/Minuit2/MnStrategy.h >Xinclude/root/Minuit2/MnTiny.h >Xinclude/root/Minuit2/MnTraceObject.h >Xinclude/root/Minuit2/MnUserCovariance.h >Xinclude/root/Minuit2/MnUserFcn.h >Xinclude/root/Minuit2/MnUserParameterState.h >Xinclude/root/Minuit2/MnUserParameters.h >Xinclude/root/Minuit2/MnUserTransformation.h >Xinclude/root/Minuit2/MnVectorTransform.h >Xinclude/root/Minuit2/ModularFunctionMinimizer.h >Xinclude/root/Minuit2/NegativeG2LineSearch.h >Xinclude/root/Minuit2/Numerical2PGradientCalculator.h >Xinclude/root/Minuit2/NumericalDerivator.h >Xinclude/root/Minuit2/ParametricFunction.h >Xinclude/root/Minuit2/ScanBuilder.h >Xinclude/root/Minuit2/ScanMinimizer.h >Xinclude/root/Minuit2/SimplexBuilder.h >Xinclude/root/Minuit2/SimplexMinimizer.h >Xinclude/root/Minuit2/SimplexParameters.h >Xinclude/root/Minuit2/SimplexSeedGenerator.h >Xinclude/root/Minuit2/SinParameterTransformation.h >Xinclude/root/Minuit2/SqrtLowParameterTransformation.h >Xinclude/root/Minuit2/SqrtUpParameterTransformation.h >Xinclude/root/Minuit2/StackAllocator.h >Xinclude/root/Minuit2/VariableMetricBuilder.h >Xinclude/root/Minuit2/VariableMetricEDMEstimator.h >Xinclude/root/Minuit2/VariableMetricMinimizer.h >Xinclude/root/Minuit2/VectorOuterProduct.h >Xinclude/root/NetErrors.h >Xinclude/root/PoolUtils.h >Xinclude/root/PosixThreadInc.h >Xinclude/root/RConfig.h >Xinclude/root/RConfigOptions.h >Xinclude/root/RConfigure.h >Xinclude/root/RGitCommit.h >Xinclude/root/ROOT/EExecutionPolicy.hxx >Xinclude/root/ROOT/InternalTreeUtils.hxx >Xinclude/root/ROOT/RArrowDS.hxx >Xinclude/root/ROOT/RConcurrentHashColl.hxx >Xinclude/root/ROOT/RConfig.h >Xinclude/root/ROOT/RConfig.hxx >Xinclude/root/ROOT/RCsvDS.hxx >Xinclude/root/ROOT/RDF/ActionHelpers.hxx >Xinclude/root/ROOT/RDF/ColumnReaderUtils.hxx >Xinclude/root/ROOT/RDF/GraphNode.hxx >Xinclude/root/ROOT/RDF/GraphUtils.hxx >Xinclude/root/ROOT/RDF/HistoModels.hxx >Xinclude/root/ROOT/RDF/InterfaceUtils.hxx >Xinclude/root/ROOT/RDF/InternalUtils.hxx >Xinclude/root/ROOT/RDF/PyROOTHelpers.hxx >Xinclude/root/ROOT/RDF/RAction.hxx >Xinclude/root/ROOT/RDF/RActionBase.hxx >Xinclude/root/ROOT/RDF/RColumnReaderBase.hxx >Xinclude/root/ROOT/RDF/RColumnRegister.hxx >Xinclude/root/ROOT/RDF/RCutFlowReport.hxx >Xinclude/root/ROOT/RDF/RDFDescription.hxx >Xinclude/root/ROOT/RDF/RDSColumnReader.hxx >Xinclude/root/ROOT/RDF/RDatasetSpec.hxx >Xinclude/root/ROOT/RDF/RDefine.hxx >Xinclude/root/ROOT/RDF/RDefineBase.hxx >Xinclude/root/ROOT/RDF/RDefinePerSample.hxx >Xinclude/root/ROOT/RDF/RDefineReader.hxx >Xinclude/root/ROOT/RDF/RDisplay.hxx >Xinclude/root/ROOT/RDF/RFilter.hxx >Xinclude/root/ROOT/RDF/RFilterBase.hxx >Xinclude/root/ROOT/RDF/RInterface.hxx >Xinclude/root/ROOT/RDF/RJittedAction.hxx >Xinclude/root/ROOT/RDF/RJittedDefine.hxx >Xinclude/root/ROOT/RDF/RJittedFilter.hxx >Xinclude/root/ROOT/RDF/RJittedVariation.hxx >Xinclude/root/ROOT/RDF/RLazyDSImpl.hxx >Xinclude/root/ROOT/RDF/RLoopManager.hxx >Xinclude/root/ROOT/RDF/RMergeableValue.hxx >Xinclude/root/ROOT/RDF/RNewSampleNotifier.hxx >Xinclude/root/ROOT/RDF/RNodeBase.hxx >Xinclude/root/ROOT/RDF/RRange.hxx >Xinclude/root/ROOT/RDF/RRangeBase.hxx >Xinclude/root/ROOT/RDF/RResultMap.hxx >Xinclude/root/ROOT/RDF/RSampleInfo.hxx >Xinclude/root/ROOT/RDF/RSlotStack.hxx >Xinclude/root/ROOT/RDF/RTreeColumnReader.hxx >Xinclude/root/ROOT/RDF/RVariation.hxx >Xinclude/root/ROOT/RDF/RVariationBase.hxx >Xinclude/root/ROOT/RDF/RVariationReader.hxx >Xinclude/root/ROOT/RDF/RVariationsDescription.hxx >Xinclude/root/ROOT/RDF/RVariedAction.hxx >Xinclude/root/ROOT/RDF/Utils.hxx >Xinclude/root/ROOT/RDFHelpers.hxx >Xinclude/root/ROOT/RDataFrame.hxx >Xinclude/root/ROOT/RDataSource.hxx >Xinclude/root/ROOT/RIoUring.hxx >Xinclude/root/ROOT/RLazyDS.hxx >Xinclude/root/ROOT/RLogger.hxx >Xinclude/root/ROOT/RNTupleDS.hxx >Xinclude/root/ROOT/RNotFn.hxx >Xinclude/root/ROOT/RNumpyDS.hxx >Xinclude/root/ROOT/RRangeCast.hxx >Xinclude/root/ROOT/RRawFile.hxx >Xinclude/root/ROOT/RRawFileNetXNG.hxx >Xinclude/root/ROOT/RRawFileUnix.hxx >Xinclude/root/ROOT/RRawFileWin.hxx >Xinclude/root/ROOT/RResultHandle.hxx >Xinclude/root/ROOT/RResultPtr.hxx >Xinclude/root/ROOT/RRootDS.hxx >Xinclude/root/ROOT/RSnapshotOptions.hxx >Xinclude/root/ROOT/RSpan.hxx >Xinclude/root/ROOT/RSqliteDS.hxx >Xinclude/root/ROOT/RStringView.hxx >Xinclude/root/ROOT/RTaskArena.hxx >Xinclude/root/ROOT/RTrivialDS.hxx >Xinclude/root/ROOT/RVec.hxx >Xinclude/root/ROOT/RWrap_libcpp_string_view.h >Xinclude/root/ROOT/StringConv.hxx >Xinclude/root/ROOT/StringUtils.hxx >Xinclude/root/ROOT/TBufferMerger.hxx >Xinclude/root/ROOT/TDataFrame.hxx >Xinclude/root/ROOT/TErrorDefaultHandler.hxx >Xinclude/root/ROOT/TExecutor.hxx >Xinclude/root/ROOT/TExecutorCRTP.hxx >Xinclude/root/ROOT/TFuture.hxx >Xinclude/root/ROOT/TIOFeatures.hxx >Xinclude/root/ROOT/TProcessExecutor.hxx >Xinclude/root/ROOT/TPyDispatcher.h >Xinclude/root/ROOT/TRWSpinLock.hxx >Xinclude/root/ROOT/TResultProxy.hxx >Xinclude/root/ROOT/TSeq.hxx >Xinclude/root/ROOT/TSequentialExecutor.hxx >Xinclude/root/ROOT/TSpinMutex.hxx >Xinclude/root/ROOT/TTaskGroup.hxx >Xinclude/root/ROOT/TThreadExecutor.hxx >Xinclude/root/ROOT/TThreadedObject.hxx >Xinclude/root/ROOT/TTreeProcessorMP.hxx >Xinclude/root/ROOT/TTreeProcessorMT.hxx >Xinclude/root/ROOT/TTreeReaderFast.hxx >Xinclude/root/ROOT/TTreeReaderValueFast.hxx >Xinclude/root/ROOT/TypeTraits.hxx >Xinclude/root/ROOT/libcpp_string_view.h >Xinclude/root/ROOT/span.hxx >Xinclude/root/RQ_OBJECT.h >Xinclude/root/RRemoteProtocol.h >Xinclude/root/RStipples.h >Xinclude/root/RStringView.h >Xinclude/root/RVersion.h >Xinclude/root/RZip.h >Xinclude/root/Riostream.h >Xinclude/root/Roo1DTable.h >Xinclude/root/Roo2DKeysPdf.h >Xinclude/root/RooAICRegistry.h >Xinclude/root/RooAbsAnaConvPdf.h >Xinclude/root/RooAbsArg.h >Xinclude/root/RooAbsBinning.h >Xinclude/root/RooAbsCache.h >Xinclude/root/RooAbsCacheElement.h >Xinclude/root/RooAbsCachedPdf.h >Xinclude/root/RooAbsCachedReal.h >Xinclude/root/RooAbsCategory.h >Xinclude/root/RooAbsCategoryLValue.h >Xinclude/root/RooAbsCollection.h >Xinclude/root/RooAbsData.h >Xinclude/root/RooAbsDataHelper.h >Xinclude/root/RooAbsDataStore.h >Xinclude/root/RooAbsFunc.h >Xinclude/root/RooAbsGenContext.h >Xinclude/root/RooAbsHiddenReal.h >Xinclude/root/RooAbsIntegrator.h >Xinclude/root/RooAbsLValue.h >Xinclude/root/RooAbsMCStudyModule.h >Xinclude/root/RooAbsMinimizerFcn.h >Xinclude/root/RooAbsMoment.h >Xinclude/root/RooAbsNumGenerator.h >Xinclude/root/RooAbsOptTestStatistic.h >Xinclude/root/RooAbsPdf.h >Xinclude/root/RooAbsProxy.h >Xinclude/root/RooAbsReal.h >Xinclude/root/RooAbsRealLValue.h >Xinclude/root/RooAbsRootFinder.h >Xinclude/root/RooAbsSelfCachedPdf.h >Xinclude/root/RooAbsSelfCachedReal.h >Xinclude/root/RooAbsString.h >Xinclude/root/RooAbsStudy.h >Xinclude/root/RooAbsTestStatistic.h >Xinclude/root/RooAcceptReject.h >Xinclude/root/RooAdaptiveGaussKronrodIntegrator1D.h >Xinclude/root/RooAdaptiveIntegratorND.h >Xinclude/root/RooAddGenContext.h >Xinclude/root/RooAddModel.h >Xinclude/root/RooAddPdf.h >Xinclude/root/RooAddition.h >Xinclude/root/RooArgList.h >Xinclude/root/RooArgProxy.h >Xinclude/root/RooArgSet.h >Xinclude/root/RooArgusBG.h >Xinclude/root/RooBCPEffDecay.h >Xinclude/root/RooBCPGenDecay.h >Xinclude/root/RooBDecay.h >Xinclude/root/RooBMixDecay.h >Xinclude/root/RooBatchCompute.h >Xinclude/root/RooBatchComputeTypes.h >Xinclude/root/RooBernstein.h >Xinclude/root/RooBifurGauss.h >Xinclude/root/RooBinIntegrator.h >Xinclude/root/RooBinSamplingPdf.h >Xinclude/root/RooBinWidthFunction.h >Xinclude/root/RooBinnedGenContext.h >Xinclude/root/RooBinning.h >Xinclude/root/RooBinningCategory.h >Xinclude/root/RooBlindTools.h >Xinclude/root/RooBreitWigner.h >Xinclude/root/RooBrentRootFinder.h >Xinclude/root/RooBukinPdf.h >Xinclude/root/RooCBShape.h >Xinclude/root/RooCFunction1Binding.h >Xinclude/root/RooCFunction2Binding.h >Xinclude/root/RooCFunction3Binding.h >Xinclude/root/RooCFunction4Binding.h >Xinclude/root/RooCacheManager.h >Xinclude/root/RooCachedPdf.h >Xinclude/root/RooCachedReal.h >Xinclude/root/RooCatType.h >Xinclude/root/RooCategory.h >Xinclude/root/RooCategoryProxy.h >Xinclude/root/RooChangeTracker.h >Xinclude/root/RooChebychev.h >Xinclude/root/RooChi2MCSModule.h >Xinclude/root/RooChi2Var.h >Xinclude/root/RooChiSquarePdf.h >Xinclude/root/RooClassFactory.h >Xinclude/root/RooCmdArg.h >Xinclude/root/RooCmdConfig.h >Xinclude/root/RooCompositeDataStore.h >Xinclude/root/RooConstVar.h >Xinclude/root/RooConstraintSum.h >Xinclude/root/RooConvCoefVar.h >Xinclude/root/RooConvGenContext.h >Xinclude/root/RooConvIntegrandBinding.h >Xinclude/root/RooCrystalBall.h >Xinclude/root/RooCurve.h >Xinclude/root/RooCustomizer.h >Xinclude/root/RooDLLSignificanceMCSModule.h >Xinclude/root/RooDataHist.h >Xinclude/root/RooDataHistSliceIter.h >Xinclude/root/RooDataProjBinding.h >Xinclude/root/RooDataSet.h >Xinclude/root/RooDataWeightedAverage.h >Xinclude/root/RooDecay.h >Xinclude/root/RooDerivative.h >Xinclude/root/RooDirItem.h >Xinclude/root/RooDouble.h >Xinclude/root/RooDstD0BG.h >Xinclude/root/RooEffGenContext.h >Xinclude/root/RooEffProd.h >Xinclude/root/RooEfficiency.h >Xinclude/root/RooEllipse.h >Xinclude/root/RooErrorHandler.h >Xinclude/root/RooErrorVar.h >Xinclude/root/RooExpensiveObjectCache.h >Xinclude/root/RooExponential.h >Xinclude/root/RooExtendPdf.h >Xinclude/root/RooExtendedBinding.h >Xinclude/root/RooExtendedTerm.h >Xinclude/root/RooFFTConvPdf.h >Xinclude/root/RooFactoryWSTool.h >Xinclude/root/RooFirstMoment.h >Xinclude/root/RooFit.h >Xinclude/root/RooFit/Detail/DataMap.h >Xinclude/root/RooFit/Floats.h >Xinclude/root/RooFit/TestStatistics/LikelihoodGradientWrapper.h >Xinclude/root/RooFit/TestStatistics/LikelihoodWrapper.h >Xinclude/root/RooFit/TestStatistics/RooAbsL.h >Xinclude/root/RooFit/TestStatistics/RooBinnedL.h >Xinclude/root/RooFit/TestStatistics/RooRealL.h >Xinclude/root/RooFit/TestStatistics/RooSubsidiaryL.h >Xinclude/root/RooFit/TestStatistics/RooSumL.h >Xinclude/root/RooFit/TestStatistics/RooUnbinnedL.h >Xinclude/root/RooFit/TestStatistics/buildLikelihood.h >Xinclude/root/RooFit/TestStatistics/optional_parameter_types.h >Xinclude/root/RooFit/UniqueId.h >Xinclude/root/RooFitHS3/HistFactoryJSONTool.h >Xinclude/root/RooFitHS3/JSONInterface.h >Xinclude/root/RooFitHS3/RooJSONFactoryWSTool.h >Xinclude/root/RooFitLegacy/RooCatTypeLegacy.h >Xinclude/root/RooFitLegacy/RooCategorySharedProperties.h >Xinclude/root/RooFitLegacy/RooHashTable.h >Xinclude/root/RooFitLegacy/RooMinuit.h >Xinclude/root/RooFitLegacy/RooNameSet.h >Xinclude/root/RooFitLegacy/RooSetPair.h >Xinclude/root/RooFitLegacy/RooTreeData.h >Xinclude/root/RooFitMoreLib.h >Xinclude/root/RooFitResult.h >Xinclude/root/RooFoamGenerator.h >Xinclude/root/RooFormula.h >Xinclude/root/RooFormulaVar.h >Xinclude/root/RooFracRemainder.h >Xinclude/root/RooFunctor.h >Xinclude/root/RooFunctor1DBinding.h >Xinclude/root/RooFunctorBinding.h >Xinclude/root/RooGExpModel.h >Xinclude/root/RooGamma.h >Xinclude/root/RooGaussKronrodIntegrator1D.h >Xinclude/root/RooGaussModel.h >Xinclude/root/RooGaussian.h >Xinclude/root/RooGenContext.h >Xinclude/root/RooGenFitStudy.h >Xinclude/root/RooGenFunction.h >Xinclude/root/RooGenProdProj.h >Xinclude/root/RooGenericPdf.h >Xinclude/root/RooGlobalFunc.h >Xinclude/root/RooGrid.h >Xinclude/root/RooHelpers.h >Xinclude/root/RooHist.h >Xinclude/root/RooHistConstraint.h >Xinclude/root/RooHistError.h >Xinclude/root/RooHistFunc.h >Xinclude/root/RooHistPdf.h >Xinclude/root/RooHypatia2.h >Xinclude/root/RooImproperIntegrator1D.h >Xinclude/root/RooInt.h >Xinclude/root/RooIntegralMorph.h >Xinclude/root/RooIntegrator1D.h >Xinclude/root/RooIntegrator2D.h >Xinclude/root/RooIntegratorBinding.h >Xinclude/root/RooInvTransform.h >Xinclude/root/RooJeffreysPrior.h >Xinclude/root/RooJohnson.h >Xinclude/root/RooKeysPdf.h >Xinclude/root/RooLagrangianMorphFunc.h >Xinclude/root/RooLandau.h >Xinclude/root/RooLegendre.h >Xinclude/root/RooLinTransBinning.h >Xinclude/root/RooLinearCombination.h >Xinclude/root/RooLinearVar.h >Xinclude/root/RooLinkedList.h >Xinclude/root/RooLinkedListElem.h >Xinclude/root/RooLinkedListIter.h >Xinclude/root/RooList.h >Xinclude/root/RooListProxy.h >Xinclude/root/RooLognormal.h >Xinclude/root/RooMCIntegrator.h >Xinclude/root/RooMCStudy.h >Xinclude/root/RooMPSentinel.h >Xinclude/root/RooMappedCategory.h >Xinclude/root/RooMath.h >Xinclude/root/RooMathCoreReg.h >Xinclude/root/RooMathMoreReg.h >Xinclude/root/RooMinimizer.h >Xinclude/root/RooMinimizerFcn.h >Xinclude/root/RooMinuit.h >Xinclude/root/RooMoment.h >Xinclude/root/RooMomentMorph.h >Xinclude/root/RooMomentMorphFunc.h >Xinclude/root/RooMomentMorphFuncND.h >Xinclude/root/RooMomentMorphND.h >Xinclude/root/RooMsgService.h >Xinclude/root/RooMultiBinomial.h >Xinclude/root/RooMultiCategory.h >Xinclude/root/RooMultiGenFunction.h >Xinclude/root/RooMultiVarGaussian.h >Xinclude/root/RooNDKeysPdf.h >Xinclude/root/RooNLLVar.h >Xinclude/root/RooNaNPacker.h >Xinclude/root/RooNameReg.h >Xinclude/root/RooNonCPEigenDecay.h >Xinclude/root/RooNonCentralChiSquare.h >Xinclude/root/RooNormSetCache.h >Xinclude/root/RooNovosibirsk.h >Xinclude/root/RooNumCdf.h >Xinclude/root/RooNumConvPdf.h >Xinclude/root/RooNumConvolution.h >Xinclude/root/RooNumGenConfig.h >Xinclude/root/RooNumGenFactory.h >Xinclude/root/RooNumIntConfig.h >Xinclude/root/RooNumIntFactory.h >Xinclude/root/RooNumRunningInt.h >Xinclude/root/RooNumber.h >Xinclude/root/RooObjCacheManager.h >Xinclude/root/RooParamBinning.h >Xinclude/root/RooParamHistFunc.h >Xinclude/root/RooParametricStepFunction.h >Xinclude/root/RooPlot.h >Xinclude/root/RooPlotable.h >Xinclude/root/RooPoisson.h >Xinclude/root/RooPolyFunc.h >Xinclude/root/RooPolyVar.h >Xinclude/root/RooPolynomial.h >Xinclude/root/RooPrintable.h >Xinclude/root/RooProdGenContext.h >Xinclude/root/RooProdPdf.h >Xinclude/root/RooProduct.h >Xinclude/root/RooProfileLL.h >Xinclude/root/RooProjectedPdf.h >Xinclude/root/RooProofDriverSelector.h >Xinclude/root/RooPullVar.h >Xinclude/root/RooQuasiRandomGenerator.h >Xinclude/root/RooRandom.h >Xinclude/root/RooRandomizeParamMCSModule.h >Xinclude/root/RooRangeBinning.h >Xinclude/root/RooRangeBoolean.h >Xinclude/root/RooRatio.h >Xinclude/root/RooRealAnalytic.h >Xinclude/root/RooRealBinding.h >Xinclude/root/RooRealConstant.h >Xinclude/root/RooRealIntegral.h >Xinclude/root/RooRealMPFE.h >Xinclude/root/RooRealProxy.h >Xinclude/root/RooRealSumFunc.h >Xinclude/root/RooRealSumPdf.h >Xinclude/root/RooRealVar.h >Xinclude/root/RooRealVarSharedProperties.h >Xinclude/root/RooRecursiveFraction.h >Xinclude/root/RooRefCountList.h >Xinclude/root/RooResolutionModel.h >Xinclude/root/RooSTLRefCountList.h >Xinclude/root/RooScaledFunc.h >Xinclude/root/RooSecondMoment.h >Xinclude/root/RooSegmentedIntegrator1D.h >Xinclude/root/RooSegmentedIntegrator2D.h >Xinclude/root/RooSentinel.h >Xinclude/root/RooSetProxy.h >Xinclude/root/RooSharedProperties.h >Xinclude/root/RooSimGenContext.h >Xinclude/root/RooSimPdfBuilder.h >Xinclude/root/RooSimSplitGenContext.h >Xinclude/root/RooSimWSTool.h >Xinclude/root/RooSimultaneous.h >Xinclude/root/RooSpHarmonic.h >Xinclude/root/RooSpan.h >Xinclude/root/RooStats/AsymptoticCalculator.h >Xinclude/root/RooStats/BayesianCalculator.h >Xinclude/root/RooStats/BernsteinCorrection.h >Xinclude/root/RooStats/CombinedCalculator.h >Xinclude/root/RooStats/ConfInterval.h >Xinclude/root/RooStats/ConfidenceBelt.h >Xinclude/root/RooStats/DebuggingSampler.h >Xinclude/root/RooStats/DebuggingTestStat.h >Xinclude/root/RooStats/DetailedOutputAggregator.h >Xinclude/root/RooStats/FeldmanCousins.h >Xinclude/root/RooStats/FrequentistCalculator.h >Xinclude/root/RooStats/HLFactory.h >Xinclude/root/RooStats/Heaviside.h >Xinclude/root/RooStats/HistFactory/Asimov.h >Xinclude/root/RooStats/HistFactory/Channel.h >Xinclude/root/RooStats/HistFactory/ConfigParser.h >Xinclude/root/RooStats/HistFactory/Data.h >Xinclude/root/RooStats/HistFactory/EstimateSummary.h >Xinclude/root/RooStats/HistFactory/FlexibleInterpVar.h >Xinclude/root/RooStats/HistFactory/HistFactoryException.h >Xinclude/root/RooStats/HistFactory/HistFactoryModelUtils.h >Xinclude/root/RooStats/HistFactory/HistFactoryNavigation.h >Xinclude/root/RooStats/HistFactory/HistFactorySimultaneous.h >Xinclude/root/RooStats/HistFactory/HistRef.h >Xinclude/root/RooStats/HistFactory/HistoToWorkspaceFactory.h >Xinclude/root/RooStats/HistFactory/HistoToWorkspaceFactoryFast.h >Xinclude/root/RooStats/HistFactory/LinInterpVar.h >Xinclude/root/RooStats/HistFactory/MakeModelAndMeasurementsFast.h >Xinclude/root/RooStats/HistFactory/Measurement.h >Xinclude/root/RooStats/HistFactory/ParamHistFunc.h >Xinclude/root/RooStats/HistFactory/PiecewiseInterpolation.h >Xinclude/root/RooStats/HistFactory/PreprocessFunction.h >Xinclude/root/RooStats/HistFactory/RooBarlowBeestonLL.h >Xinclude/root/RooStats/HistFactory/Sample.h >Xinclude/root/RooStats/HistFactory/Systematics.h >Xinclude/root/RooStats/HybridCalculator.h >Xinclude/root/RooStats/HybridCalculatorOriginal.h >Xinclude/root/RooStats/HybridPlot.h >Xinclude/root/RooStats/HybridResult.h >Xinclude/root/RooStats/HypoTestCalculator.h >Xinclude/root/RooStats/HypoTestCalculatorGeneric.h >Xinclude/root/RooStats/HypoTestInverter.h >Xinclude/root/RooStats/HypoTestInverterOriginal.h >Xinclude/root/RooStats/HypoTestInverterPlot.h >Xinclude/root/RooStats/HypoTestInverterResult.h >Xinclude/root/RooStats/HypoTestPlot.h >Xinclude/root/RooStats/HypoTestResult.h >Xinclude/root/RooStats/IntervalCalculator.h >Xinclude/root/RooStats/LikelihoodInterval.h >Xinclude/root/RooStats/LikelihoodIntervalPlot.h >Xinclude/root/RooStats/MCMCCalculator.h >Xinclude/root/RooStats/MCMCInterval.h >Xinclude/root/RooStats/MCMCIntervalPlot.h >Xinclude/root/RooStats/MarkovChain.h >Xinclude/root/RooStats/MaxLikelihoodEstimateTestStat.h >Xinclude/root/RooStats/MetropolisHastings.h >Xinclude/root/RooStats/MinNLLTestStat.h >Xinclude/root/RooStats/ModelConfig.h >Xinclude/root/RooStats/NeymanConstruction.h >Xinclude/root/RooStats/NumEventsTestStat.h >Xinclude/root/RooStats/NumberCountingPdfFactory.h >Xinclude/root/RooStats/NumberCountingUtils.h >Xinclude/root/RooStats/PdfProposal.h >Xinclude/root/RooStats/PointSetInterval.h >Xinclude/root/RooStats/ProfileInspector.h >Xinclude/root/RooStats/ProfileLikelihoodCalculator.h >Xinclude/root/RooStats/ProfileLikelihoodTestStat.h >Xinclude/root/RooStats/ProofConfig.h >Xinclude/root/RooStats/ProposalFunction.h >Xinclude/root/RooStats/ProposalHelper.h >Xinclude/root/RooStats/RatioOfProfiledLikelihoodsTestStat.h >Xinclude/root/RooStats/RooStatsUtils.h >Xinclude/root/RooStats/SPlot.h >Xinclude/root/RooStats/SamplingDistPlot.h >Xinclude/root/RooStats/SamplingDistribution.h >Xinclude/root/RooStats/SequentialProposal.h >Xinclude/root/RooStats/SimpleInterval.h >Xinclude/root/RooStats/SimpleLikelihoodRatioTestStat.h >Xinclude/root/RooStats/TestStatSampler.h >Xinclude/root/RooStats/TestStatistic.h >Xinclude/root/RooStats/ToyMCImportanceSampler.h >Xinclude/root/RooStats/ToyMCSampler.h >Xinclude/root/RooStats/ToyMCStudy.h >Xinclude/root/RooStats/UniformProposal.h >Xinclude/root/RooStats/UpperLimitMCSModule.h >Xinclude/root/RooStepFunction.h >Xinclude/root/RooStreamParser.h >Xinclude/root/RooStringVar.h >Xinclude/root/RooStudyManager.h >Xinclude/root/RooStudyPackage.h >Xinclude/root/RooSuperCategory.h >Xinclude/root/RooTFnBinding.h >Xinclude/root/RooTFnPdfBinding.h >Xinclude/root/RooTFoamBinding.h >Xinclude/root/RooTMathReg.h >Xinclude/root/RooTObjWrap.h >Xinclude/root/RooTable.h >Xinclude/root/RooTemplateProxy.h >Xinclude/root/RooThresholdCategory.h >Xinclude/root/RooTrace.h >Xinclude/root/RooTreeDataStore.h >Xinclude/root/RooTruthModel.h >Xinclude/root/RooUnblindCPAsymVar.h >Xinclude/root/RooUnblindOffset.h >Xinclude/root/RooUnblindPrecision.h >Xinclude/root/RooUnblindUniform.h >Xinclude/root/RooUniform.h >Xinclude/root/RooUniformBinning.h >Xinclude/root/RooUnitTest.h >Xinclude/root/RooVDTHeaders.h >Xinclude/root/RooVectorDataStore.h >Xinclude/root/RooVoigtian.h >Xinclude/root/RooWorkspace.h >Xinclude/root/RooWorkspaceHandle.h >Xinclude/root/RooWrapperPdf.h >Xinclude/root/RooXYChi2Var.h >Xinclude/root/RootMetaSelection.h >Xinclude/root/Rpair.h >Xinclude/root/Rstrstream.h >Xinclude/root/Rtypes.h >Xinclude/root/RtypesCore.h >Xinclude/root/RtypesImp.h >Xinclude/root/RunContext.h >Xinclude/root/Strlen.h >Xinclude/root/TASImage.h >Xinclude/root/TASImagePlugin.h >Xinclude/root/TASPaletteEditor.h >Xinclude/root/TASPluginGS.h >Xinclude/root/TAdvancedGraphicsDialog.h >Xinclude/root/TApplication.h >Xinclude/root/TApplicationImp.h >Xinclude/root/TApplicationRemote.h >Xinclude/root/TApplicationServer.h >Xinclude/root/TArc.h >Xinclude/root/TArcBall.h >Xinclude/root/TArchiveFile.h >Xinclude/root/TArray.h >Xinclude/root/TArrayC.h >Xinclude/root/TArrayD.h >Xinclude/root/TArrayF.h >Xinclude/root/TArrayI.h >Xinclude/root/TArrayL.h >Xinclude/root/TArrayL64.h >Xinclude/root/TArrayS.h >Xinclude/root/TArrow.h >Xinclude/root/TArrowEditor.h >Xinclude/root/TAtomicCount.h >Xinclude/root/TAtomicCountGcc.h >Xinclude/root/TAtomicCountPthread.h >Xinclude/root/TAtt3D.h >Xinclude/root/TAttAxis.h >Xinclude/root/TAttBBox.h >Xinclude/root/TAttBBox2D.h >Xinclude/root/TAttCanvas.h >Xinclude/root/TAttFill.h >Xinclude/root/TAttFillEditor.h >Xinclude/root/TAttImage.h >Xinclude/root/TAttLine.h >Xinclude/root/TAttLineEditor.h >Xinclude/root/TAttMarker.h >Xinclude/root/TAttMarkerEditor.h >Xinclude/root/TAttPad.h >Xinclude/root/TAttParticle.h >Xinclude/root/TAttText.h >Xinclude/root/TAttTextEditor.h >Xinclude/root/TAuthenticate.h >Xinclude/root/TAxis.h >Xinclude/root/TAxis3D.h >Xinclude/root/TAxisEditor.h >Xinclude/root/TAxisModLab.h >Xinclude/root/TBRIK.h >Xinclude/root/TBackCompFitter.h >Xinclude/root/TBase64.h >Xinclude/root/TBaseClass.h >Xinclude/root/TBasket.h >Xinclude/root/TBasketSQL.h >Xinclude/root/TBenchmark.h >Xinclude/root/TBinomialEfficiencyFitter.h >Xinclude/root/TBits.h >Xinclude/root/TBox.h >Xinclude/root/TBranch.h >Xinclude/root/TBranchBrowsable.h >Xinclude/root/TBranchCacheInfo.h >Xinclude/root/TBranchClones.h >Xinclude/root/TBranchElement.h >Xinclude/root/TBranchObject.h >Xinclude/root/TBranchProxy.h >Xinclude/root/TBranchProxyClassDescriptor.h >Xinclude/root/TBranchProxyDescriptor.h >Xinclude/root/TBranchProxyDirector.h >Xinclude/root/TBranchProxyTemplate.h >Xinclude/root/TBranchRef.h >Xinclude/root/TBranchSTL.h >Xinclude/root/TBrowser.h >Xinclude/root/TBrowserImp.h >Xinclude/root/TBtree.h >Xinclude/root/TBuffer.h >Xinclude/root/TBuffer3D.h >Xinclude/root/TBuffer3DTypes.h >Xinclude/root/TBufferFile.h >Xinclude/root/TBufferIO.h >Xinclude/root/TBufferJSON.h >Xinclude/root/TBufferSQL.h >Xinclude/root/TBufferSQL2.h >Xinclude/root/TBufferText.h >Xinclude/root/TBufferXML.h >Xinclude/root/TButton.h >Xinclude/root/TCONE.h >Xinclude/root/TCONS.h >Xinclude/root/TCTUB.h >Xinclude/root/TCandle.h >Xinclude/root/TCanvas.h >Xinclude/root/TCanvasImp.h >Xinclude/root/TChain.h >Xinclude/root/TChainElement.h >Xinclude/root/TChainIndex.h >Xinclude/root/TClass.h >Xinclude/root/TClassDocOutput.h >Xinclude/root/TClassEdit.h >Xinclude/root/TClassGenerator.h >Xinclude/root/TClassMenuItem.h >Xinclude/root/TClassRef.h >Xinclude/root/TClassStreamer.h >Xinclude/root/TClassTable.h >Xinclude/root/TClassTree.h >Xinclude/root/TClonesArray.h >Xinclude/root/TCollection.h >Xinclude/root/TCollectionProxyFactory.h >Xinclude/root/TCollectionProxyInfo.h >Xinclude/root/TColor.h >Xinclude/root/TColorGradient.h >Xinclude/root/TColorWheel.h >Xinclude/root/TComplex.h >Xinclude/root/TCondition.h >Xinclude/root/TConditionImp.h >Xinclude/root/TCondor.h >Xinclude/root/TConfidenceLevel.h >Xinclude/root/TContainerConverters.h >Xinclude/root/TContextMenu.h >Xinclude/root/TContextMenuImp.h >Xinclude/root/TControlBar.h >Xinclude/root/TControlBarButton.h >Xinclude/root/TControlBarImp.h >Xinclude/root/TCreatePrimitives.h >Xinclude/root/TCrown.h >Xinclude/root/TCurlyArc.h >Xinclude/root/TCurlyArcEditor.h >Xinclude/root/TCurlyLine.h >Xinclude/root/TCurlyLineEditor.h >Xinclude/root/TCut.h >Xinclude/root/TCutG.h >Xinclude/root/TDOMParser.h >Xinclude/root/TDSet.h >Xinclude/root/TDSetProxy.h >Xinclude/root/TDataMember.h >Xinclude/root/TDataSetManager.h >Xinclude/root/TDataSetManagerAliEn.h >Xinclude/root/TDataSetManagerFile.h >Xinclude/root/TDataType.h >Xinclude/root/TDatabasePDG.h >Xinclude/root/TDatime.h >Xinclude/root/TDecayChannel.h >Xinclude/root/TDecompBK.h >Xinclude/root/TDecompBase.h >Xinclude/root/TDecompChol.h >Xinclude/root/TDecompLU.h >Xinclude/root/TDecompQRH.h >Xinclude/root/TDecompSVD.h >Xinclude/root/TDecompSparse.h >Xinclude/root/TDialogCanvas.h >Xinclude/root/TDiamond.h >Xinclude/root/TDictAttributeMap.h >Xinclude/root/TDictionary.h >Xinclude/root/TDirectory.h >Xinclude/root/TDirectoryFile.h >Xinclude/root/TDocDirective.h >Xinclude/root/TDocInfo.h >Xinclude/root/TDocOutput.h >Xinclude/root/TDocParser.h >Xinclude/root/TDrawFeedback.h >Xinclude/root/TELTU.h >Xinclude/root/TEfficiency.h >Xinclude/root/TEllipse.h >Xinclude/root/TEmulatedCollectionProxy.h >Xinclude/root/TEmulatedMapProxy.h >Xinclude/root/TEntryList.h >Xinclude/root/TEntryListArray.h >Xinclude/root/TEntryListBlock.h >Xinclude/root/TEntryListFromFile.h >Xinclude/root/TEnum.h >Xinclude/root/TEnumConstant.h >Xinclude/root/TEnv.h >Xinclude/root/TError.h >Xinclude/root/TEveArrow.h >Xinclude/root/TEveArrowEditor.h >Xinclude/root/TEveArrowGL.h >Xinclude/root/TEveBox.h >Xinclude/root/TEveBoxGL.h >Xinclude/root/TEveBoxSet.h >Xinclude/root/TEveBoxSetGL.h >Xinclude/root/TEveBrowser.h >Xinclude/root/TEveCalo.h >Xinclude/root/TEveCalo2DGL.h >Xinclude/root/TEveCalo3DGL.h >Xinclude/root/TEveCaloData.h >Xinclude/root/TEveCaloLegoEditor.h >Xinclude/root/TEveCaloLegoGL.h >Xinclude/root/TEveCaloLegoOverlay.h >Xinclude/root/TEveCaloVizEditor.h >Xinclude/root/TEveChunkManager.h >Xinclude/root/TEveCompound.h >Xinclude/root/TEveDigitSet.h >Xinclude/root/TEveDigitSetEditor.h >Xinclude/root/TEveDigitSetGL.h >Xinclude/root/TEveElement.h >Xinclude/root/TEveElementEditor.h >Xinclude/root/TEveEventManager.h >Xinclude/root/TEveFrameBox.h >Xinclude/root/TEveFrameBoxGL.h >Xinclude/root/TEveGValuators.h >Xinclude/root/TEveGedEditor.h >Xinclude/root/TEveGeoNode.h >Xinclude/root/TEveGeoNodeEditor.h >Xinclude/root/TEveGeoPolyShape.h >Xinclude/root/TEveGeoShape.h >Xinclude/root/TEveGeoShapeExtract.h >Xinclude/root/TEveGridStepper.h >Xinclude/root/TEveGridStepperEditor.h >Xinclude/root/TEveJetCone.h >Xinclude/root/TEveJetConeEditor.h >Xinclude/root/TEveJetConeGL.h >Xinclude/root/TEveLegoEventHandler.h >Xinclude/root/TEveLine.h >Xinclude/root/TEveLineEditor.h >Xinclude/root/TEveLineGL.h >Xinclude/root/TEveMacro.h >Xinclude/root/TEveManager.h >Xinclude/root/TEvePad.h >Xinclude/root/TEveParamList.h >Xinclude/root/TEvePathMark.h >Xinclude/root/TEvePlot3D.h >Xinclude/root/TEvePlot3DGL.h >Xinclude/root/TEvePointSet.h >Xinclude/root/TEvePointSetArrayEditor.h >Xinclude/root/TEvePolygonSetProjected.h >Xinclude/root/TEvePolygonSetProjectedGL.h >Xinclude/root/TEveProjectionAxes.h >Xinclude/root/TEveProjectionAxesEditor.h >Xinclude/root/TEveProjectionAxesGL.h >Xinclude/root/TEveProjectionBases.h >Xinclude/root/TEveProjectionManager.h >Xinclude/root/TEveProjectionManagerEditor.h >Xinclude/root/TEveProjections.h >Xinclude/root/TEveQuadSet.h >Xinclude/root/TEveQuadSetGL.h >Xinclude/root/TEveRGBAPalette.h >Xinclude/root/TEveRGBAPaletteEditor.h >Xinclude/root/TEveRGBAPaletteOverlay.h >Xinclude/root/TEveScalableStraightLineSet.h >Xinclude/root/TEveScene.h >Xinclude/root/TEveSceneInfo.h >Xinclude/root/TEveSecondarySelectable.h >Xinclude/root/TEveSelection.h >Xinclude/root/TEveShape.h >Xinclude/root/TEveShapeEditor.h >Xinclude/root/TEveStraightLineSet.h >Xinclude/root/TEveStraightLineSetEditor.h >Xinclude/root/TEveStraightLineSetGL.h >Xinclude/root/TEveText.h >Xinclude/root/TEveTextEditor.h >Xinclude/root/TEveTextGL.h >Xinclude/root/TEveTrack.h >Xinclude/root/TEveTrackEditor.h >Xinclude/root/TEveTrackGL.h >Xinclude/root/TEveTrackProjected.h >Xinclude/root/TEveTrackProjectedGL.h >Xinclude/root/TEveTrackPropagator.h >Xinclude/root/TEveTrackPropagatorEditor.h >Xinclude/root/TEveTrans.h >Xinclude/root/TEveTransEditor.h >Xinclude/root/TEveTreeTools.h >Xinclude/root/TEveTriangleSet.h >Xinclude/root/TEveTriangleSetEditor.h >Xinclude/root/TEveTriangleSetGL.h >Xinclude/root/TEveUtil.h >Xinclude/root/TEveVSD.h >Xinclude/root/TEveVSDStructs.h >Xinclude/root/TEveVector.h >Xinclude/root/TEveViewer.h >Xinclude/root/TEveViewerListEditor.h >Xinclude/root/TEveWindow.h >Xinclude/root/TEveWindowEditor.h >Xinclude/root/TEveWindowManager.h >Xinclude/root/TEventIter.h >Xinclude/root/TEventList.h >Xinclude/root/TExMap.h >Xinclude/root/TException.h >Xinclude/root/TExec.h >Xinclude/root/TF1.h >Xinclude/root/TF12.h >Xinclude/root/TF1AbsComposition.h >Xinclude/root/TF1Convolution.h >Xinclude/root/TF1Editor.h >Xinclude/root/TF1NormSum.h >Xinclude/root/TF2.h >Xinclude/root/TF2GL.h >Xinclude/root/TF3.h >Xinclude/root/TFFTComplex.h >Xinclude/root/TFFTComplexReal.h >Xinclude/root/TFFTReal.h >Xinclude/root/TFFTRealComplex.h >Xinclude/root/TFITS.h >Xinclude/root/TFPBlock.h >Xinclude/root/TFTP.h >Xinclude/root/TFeldmanCousins.h >Xinclude/root/TFile.h >Xinclude/root/TFileCacheRead.h >Xinclude/root/TFileCacheWrite.h >Xinclude/root/TFileCollection.h >Xinclude/root/TFileDrawMap.h >Xinclude/root/TFileInfo.h >Xinclude/root/TFileMergeInfo.h >Xinclude/root/TFileMerger.h >Xinclude/root/TFilePrefetch.h >Xinclude/root/TFileStager.h >Xinclude/root/TFitEditor.h >Xinclude/root/TFitParametersDialog.h >Xinclude/root/TFitResult.h >Xinclude/root/TFitResultPtr.h >Xinclude/root/TFitter.h >Xinclude/root/TFoam.h >Xinclude/root/TFoamCell.h >Xinclude/root/TFoamIntegrand.h >Xinclude/root/TFoamMaxwt.h >Xinclude/root/TFoamSampler.h >Xinclude/root/TFoamVect.h >Xinclude/root/TFolder.h >Xinclude/root/TFormLeafInfo.h >Xinclude/root/TFormLeafInfoReference.h >Xinclude/root/TFormula.h >Xinclude/root/TFractionFitter.h >Xinclude/root/TFrame.h >Xinclude/root/TFrameEditor.h >Xinclude/root/TFree.h >Xinclude/root/TFriendElement.h >Xinclude/root/TFriendProxy.h >Xinclude/root/TFriendProxyDescriptor.h >Xinclude/root/TFumili.h >Xinclude/root/TFumiliMinimizer.h >Xinclude/root/TFunction.h >Xinclude/root/TFunctionParametersDialog.h >Xinclude/root/TFunctionTemplate.h >Xinclude/root/TG3DLine.h >Xinclude/root/TGApplication.h >Xinclude/root/TGButton.h >Xinclude/root/TGButtonGroup.h >Xinclude/root/TGCanvas.h >Xinclude/root/TGClient.h >Xinclude/root/TGColorDialog.h >Xinclude/root/TGColorSelect.h >Xinclude/root/TGComboBox.h >Xinclude/root/TGCommandPlugin.h >Xinclude/root/TGDMLMatrix.h >Xinclude/root/TGDMLParse.h >Xinclude/root/TGDMLWrite.h >Xinclude/root/TGDNDManager.h >Xinclude/root/TGDimension.h >Xinclude/root/TGDockableFrame.h >Xinclude/root/TGDoubleSlider.h >Xinclude/root/TGEventHandler.h >Xinclude/root/TGFSComboBox.h >Xinclude/root/TGFSContainer.h >Xinclude/root/TGFileBrowser.h >Xinclude/root/TGFileDialog.h >Xinclude/root/TGFont.h >Xinclude/root/TGFontDialog.h >Xinclude/root/TGFrame.h >Xinclude/root/TGGC.h >Xinclude/root/TGHtml.h >Xinclude/root/TGHtmlBrowser.h >Xinclude/root/TGHtmlTokens.h >Xinclude/root/TGHtmlUri.h >Xinclude/root/TGIcon.h >Xinclude/root/TGIdleHandler.h >Xinclude/root/TGImageMap.h >Xinclude/root/TGInputDialog.h >Xinclude/root/TGL5D.h >Xinclude/root/TGL5DDataSetEditor.h >Xinclude/root/TGL5DPainter.h >Xinclude/root/TGLAdapter.h >Xinclude/root/TGLAnnotation.h >Xinclude/root/TGLAutoRotator.h >Xinclude/root/TGLAxis.h >Xinclude/root/TGLAxisPainter.h >Xinclude/root/TGLBoundingBox.h >Xinclude/root/TGLBoxPainter.h >Xinclude/root/TGLCamera.h >Xinclude/root/TGLCameraGuide.h >Xinclude/root/TGLCameraOverlay.h >Xinclude/root/TGLClip.h >Xinclude/root/TGLClipSetEditor.h >Xinclude/root/TGLContext.h >Xinclude/root/TGLCylinder.h >Xinclude/root/TGLEmbeddedViewer.h >Xinclude/root/TGLEventHandler.h >Xinclude/root/TGLFBO.h >Xinclude/root/TGLFaceSet.h >Xinclude/root/TGLFontManager.h >Xinclude/root/TGLFormat.h >Xinclude/root/TGLH2PolyPainter.h >Xinclude/root/TGLHistPainter.h >Xinclude/root/TGLIncludes.h >Xinclude/root/TGLIsoMesh.h >Xinclude/root/TGLLegoPainter.h >Xinclude/root/TGLLightSet.h >Xinclude/root/TGLLightSetEditor.h >Xinclude/root/TGLLockable.h >Xinclude/root/TGLLogicalShape.h >Xinclude/root/TGLManip.h >Xinclude/root/TGLManipSet.h >Xinclude/root/TGLMarchingCubes.h >Xinclude/root/TGLObject.h >Xinclude/root/TGLOrthoCamera.h >Xinclude/root/TGLOutput.h >Xinclude/root/TGLOverlay.h >Xinclude/root/TGLOverlayButton.h >Xinclude/root/TGLPShapeObj.h >Xinclude/root/TGLPShapeObjEditor.h >Xinclude/root/TGLPShapeRef.h >Xinclude/root/TGLPadPainter.h >Xinclude/root/TGLPadUtils.h >Xinclude/root/TGLParametric.h >Xinclude/root/TGLParametricEquationGL.h >Xinclude/root/TGLPerspectiveCamera.h >Xinclude/root/TGLPhysicalShape.h >Xinclude/root/TGLPlot3D.h >Xinclude/root/TGLPlotBox.h >Xinclude/root/TGLPlotCamera.h >Xinclude/root/TGLPlotPainter.h >Xinclude/root/TGLPolyLine.h >Xinclude/root/TGLPolyMarker.h >Xinclude/root/TGLQuadric.h >Xinclude/root/TGLRnrCtx.h >Xinclude/root/TGLRotateManip.h >Xinclude/root/TGLSAFrame.h >Xinclude/root/TGLSAViewer.h >Xinclude/root/TGLScaleManip.h >Xinclude/root/TGLScene.h >Xinclude/root/TGLSceneBase.h >Xinclude/root/TGLSceneInfo.h >Xinclude/root/TGLScenePad.h >Xinclude/root/TGLSelectBuffer.h >Xinclude/root/TGLSelectRecord.h >Xinclude/root/TGLSphere.h >Xinclude/root/TGLStopwatch.h >Xinclude/root/TGLSurfacePainter.h >Xinclude/root/TGLTF3Painter.h >Xinclude/root/TGLTH3Composition.h >Xinclude/root/TGLText.h >Xinclude/root/TGLTransManip.h >Xinclude/root/TGLUtil.h >Xinclude/root/TGLViewer.h >Xinclude/root/TGLViewerBase.h >Xinclude/root/TGLViewerEditor.h >Xinclude/root/TGLVoxelPainter.h >Xinclude/root/TGLWSIncludes.h >Xinclude/root/TGLWidget.h >Xinclude/root/TGLabel.h >Xinclude/root/TGLayout.h >Xinclude/root/TGListBox.h >Xinclude/root/TGListTree.h >Xinclude/root/TGListView.h >Xinclude/root/TGMdi.h >Xinclude/root/TGMdiDecorFrame.h >Xinclude/root/TGMdiFrame.h >Xinclude/root/TGMdiMainFrame.h >Xinclude/root/TGMdiMenu.h >Xinclude/root/TGMenu.h >Xinclude/root/TGMimeTypes.h >Xinclude/root/TGMsgBox.h >Xinclude/root/TGNumberEntry.h >Xinclude/root/TGObject.h >Xinclude/root/TGPack.h >Xinclude/root/TGPasswdDialog.h >Xinclude/root/TGPicture.h >Xinclude/root/TGProgressBar.h >Xinclude/root/TGRedirectOutputGuard.h >Xinclude/root/TGResourcePool.h >Xinclude/root/TGScrollBar.h >Xinclude/root/TGShapedFrame.h >Xinclude/root/TGShutter.h >Xinclude/root/TGSimpleTable.h >Xinclude/root/TGSimpleTableInterface.h >Xinclude/root/TGSlider.h >Xinclude/root/TGSpeedo.h >Xinclude/root/TGSplitFrame.h >Xinclude/root/TGSplitter.h >Xinclude/root/TGStatusBar.h >Xinclude/root/TGString.h >Xinclude/root/TGTRA.h >Xinclude/root/TGTab.h >Xinclude/root/TGTable.h >Xinclude/root/TGTableCell.h >Xinclude/root/TGTableContainer.h >Xinclude/root/TGTableHeader.h >Xinclude/root/TGTableLayout.h >Xinclude/root/TGText.h >Xinclude/root/TGTextBuffer.h >Xinclude/root/TGTextEdit.h >Xinclude/root/TGTextEditDialogs.h >Xinclude/root/TGTextEditor.h >Xinclude/root/TGTextEntry.h >Xinclude/root/TGTextView.h >Xinclude/root/TGTextViewStream.h >Xinclude/root/TGToolBar.h >Xinclude/root/TGToolTip.h >Xinclude/root/TGTreeTable.h >Xinclude/root/TGTripleSlider.h >Xinclude/root/TGView.h >Xinclude/root/TGWidget.h >Xinclude/root/TGWindow.h >Xinclude/root/TGX11.h >Xinclude/root/TGX11TTF.h >Xinclude/root/TGXYLayout.h >Xinclude/root/TGaxis.h >Xinclude/root/TGeant4PhysicalConstants.h >Xinclude/root/TGeant4SystemOfUnits.h >Xinclude/root/TGedEditor.h >Xinclude/root/TGedFrame.h >Xinclude/root/TGedMarkerSelect.h >Xinclude/root/TGedPatternSelect.h >Xinclude/root/TGenCollectionProxy.h >Xinclude/root/TGenCollectionStreamer.h >Xinclude/root/TGenPhaseSpace.h >Xinclude/root/TGenerator.h >Xinclude/root/TGenericClassInfo.h >Xinclude/root/TGeoArb8.h >Xinclude/root/TGeoAtt.h >Xinclude/root/TGeoBBox.h >Xinclude/root/TGeoBBoxEditor.h >Xinclude/root/TGeoBoolNode.h >Xinclude/root/TGeoBranchArray.h >Xinclude/root/TGeoBuilder.h >Xinclude/root/TGeoCache.h >Xinclude/root/TGeoChecker.h >Xinclude/root/TGeoCompositeShape.h >Xinclude/root/TGeoCone.h >Xinclude/root/TGeoConeEditor.h >Xinclude/root/TGeoElement.h >Xinclude/root/TGeoEltu.h >Xinclude/root/TGeoEltuEditor.h >Xinclude/root/TGeoExtension.h >Xinclude/root/TGeoGedFrame.h >Xinclude/root/TGeoGlobalMagField.h >Xinclude/root/TGeoHalfSpace.h >Xinclude/root/TGeoHelix.h >Xinclude/root/TGeoHype.h >Xinclude/root/TGeoHypeEditor.h >Xinclude/root/TGeoManager.h >Xinclude/root/TGeoManagerEditor.h >Xinclude/root/TGeoMaterial.h >Xinclude/root/TGeoMaterialEditor.h >Xinclude/root/TGeoMatrix.h >Xinclude/root/TGeoMatrixEditor.h >Xinclude/root/TGeoMedium.h >Xinclude/root/TGeoMediumEditor.h >Xinclude/root/TGeoNavigator.h >Xinclude/root/TGeoNode.h >Xinclude/root/TGeoNodeEditor.h >Xinclude/root/TGeoOpticalSurface.h >Xinclude/root/TGeoOverlap.h >Xinclude/root/TGeoPainter.h >Xinclude/root/TGeoPara.h >Xinclude/root/TGeoParaEditor.h >Xinclude/root/TGeoParaboloid.h >Xinclude/root/TGeoParallelWorld.h >Xinclude/root/TGeoPatternFinder.h >Xinclude/root/TGeoPcon.h >Xinclude/root/TGeoPconEditor.h >Xinclude/root/TGeoPgon.h >Xinclude/root/TGeoPgonEditor.h >Xinclude/root/TGeoPhysicalConstants.h >Xinclude/root/TGeoPhysicalNode.h >Xinclude/root/TGeoPolygon.h >Xinclude/root/TGeoRCPtr.h >Xinclude/root/TGeoRegion.h >Xinclude/root/TGeoScaledShape.h >Xinclude/root/TGeoShape.h >Xinclude/root/TGeoShapeAssembly.h >Xinclude/root/TGeoSphere.h >Xinclude/root/TGeoSphereEditor.h >Xinclude/root/TGeoStateInfo.h >Xinclude/root/TGeoSystemOfUnits.h >Xinclude/root/TGeoTabManager.h >Xinclude/root/TGeoTessellated.h >Xinclude/root/TGeoTorus.h >Xinclude/root/TGeoTorusEditor.h >Xinclude/root/TGeoTrack.h >Xinclude/root/TGeoTrapEditor.h >Xinclude/root/TGeoTrd1.h >Xinclude/root/TGeoTrd1Editor.h >Xinclude/root/TGeoTrd2.h >Xinclude/root/TGeoTrd2Editor.h >Xinclude/root/TGeoTube.h >Xinclude/root/TGeoTubeEditor.h >Xinclude/root/TGeoTypedefs.h >Xinclude/root/TGeoUniformMagField.h >Xinclude/root/TGeoVector3.h >Xinclude/root/TGeoVolume.h >Xinclude/root/TGeoVolumeEditor.h >Xinclude/root/TGeoVoxelFinder.h >Xinclude/root/TGeoXtru.h >Xinclude/root/TGeometry.h >Xinclude/root/TGlobal.h >Xinclude/root/TGondzioSolver.h >Xinclude/root/TGraph.h >Xinclude/root/TGraph2D.h >Xinclude/root/TGraph2DErrors.h >Xinclude/root/TGraph2DPainter.h >Xinclude/root/TGraphAsymmErrors.h >Xinclude/root/TGraphBentErrors.h >Xinclude/root/TGraphDelaunay.h >Xinclude/root/TGraphDelaunay2D.h >Xinclude/root/TGraphEditor.h >Xinclude/root/TGraphErrors.h >Xinclude/root/TGraphMultiErrors.h >Xinclude/root/TGraphPainter.h >Xinclude/root/TGraphPolar.h >Xinclude/root/TGraphPolargram.h >Xinclude/root/TGraphQQ.h >Xinclude/root/TGraphSmooth.h >Xinclude/root/TGraphTime.h >Xinclude/root/TGrid.h >Xinclude/root/TGridCollection.h >Xinclude/root/TGridJDL.h >Xinclude/root/TGridJob.h >Xinclude/root/TGridJobStatus.h >Xinclude/root/TGridJobStatusList.h >Xinclude/root/TGridResult.h >Xinclude/root/TGroupButton.h >Xinclude/root/TGuiBldDragManager.h >Xinclude/root/TGuiBldEditor.h >Xinclude/root/TGuiBldGeometryFrame.h >Xinclude/root/TGuiBldHintsButton.h >Xinclude/root/TGuiBldHintsEditor.h >Xinclude/root/TGuiBldNameFrame.h >Xinclude/root/TGuiBuilder.h >Xinclude/root/TGuiFactory.h >Xinclude/root/TH1.h >Xinclude/root/TH1C.h >Xinclude/root/TH1D.h >Xinclude/root/TH1Editor.h >Xinclude/root/TH1F.h >Xinclude/root/TH1I.h >Xinclude/root/TH1K.h >Xinclude/root/TH1S.h >Xinclude/root/TH2.h >Xinclude/root/TH2C.h >Xinclude/root/TH2D.h >Xinclude/root/TH2Editor.h >Xinclude/root/TH2F.h >Xinclude/root/TH2GL.h >Xinclude/root/TH2I.h >Xinclude/root/TH2Poly.h >Xinclude/root/TH2S.h >Xinclude/root/TH3.h >Xinclude/root/TH3C.h >Xinclude/root/TH3D.h >Xinclude/root/TH3F.h >Xinclude/root/TH3GL.h >Xinclude/root/TH3I.h >Xinclude/root/TH3S.h >Xinclude/root/THLimitsFinder.h >Xinclude/root/THStack.h >Xinclude/root/THYPE.h >Xinclude/root/THashList.h >Xinclude/root/THashTable.h >Xinclude/root/THelix.h >Xinclude/root/THistPainter.h >Xinclude/root/THistRange.h >Xinclude/root/THn.h >Xinclude/root/THnBase.h >Xinclude/root/THnChain.h >Xinclude/root/THnSparse.h >Xinclude/root/THnSparse_Internal.h >Xinclude/root/THostAuth.h >Xinclude/root/THtml.h >Xinclude/root/THttpCallArg.h >Xinclude/root/THttpEngine.h >Xinclude/root/THttpServer.h >Xinclude/root/THttpWSHandler.h >Xinclude/root/TImage.h >Xinclude/root/TImageDump.h >Xinclude/root/TImagePlugin.h >Xinclude/root/TIndArray.h >Xinclude/root/TInetAddress.h >Xinclude/root/TInspectCanvas.h >Xinclude/root/TInspectorImp.h >Xinclude/root/TInterpreter.h >Xinclude/root/TInterpreterValue.h >Xinclude/root/TIsAProxy.h >Xinclude/root/TIterator.h >Xinclude/root/TKDE.h >Xinclude/root/TKDEAdapter.h >Xinclude/root/TKDEFGT.h >Xinclude/root/TKDTree.h >Xinclude/root/TKDTreeBinning.h >Xinclude/root/TKey.h >Xinclude/root/TKeyMapFile.h >Xinclude/root/TKeySQL.h >Xinclude/root/TKeyXML.h >Xinclude/root/TLatex.h >Xinclude/root/TLeaf.h >Xinclude/root/TLeafB.h >Xinclude/root/TLeafC.h >Xinclude/root/TLeafD.h >Xinclude/root/TLeafD32.h >Xinclude/root/TLeafElement.h >Xinclude/root/TLeafF.h >Xinclude/root/TLeafF16.h >Xinclude/root/TLeafG.h >Xinclude/root/TLeafI.h >Xinclude/root/TLeafL.h >Xinclude/root/TLeafO.h >Xinclude/root/TLeafObject.h >Xinclude/root/TLeafS.h >Xinclude/root/TLegend.h >Xinclude/root/TLegendEntry.h >Xinclude/root/TLimit.h >Xinclude/root/TLimitDataSource.h >Xinclude/root/TLine.h >Xinclude/root/TLineEditor.h >Xinclude/root/TLinearFitter.h >Xinclude/root/TLinearMinimizer.h >Xinclude/root/TLink.h >Xinclude/root/TList.h >Xinclude/root/TListOfDataMembers.h >Xinclude/root/TListOfEnums.h >Xinclude/root/TListOfEnumsWithLock.h >Xinclude/root/TListOfFunctionTemplates.h >Xinclude/root/TListOfFunctions.h >Xinclude/root/TLockFile.h >Xinclude/root/TLockPath.h >Xinclude/root/TLorentzRotation.h >Xinclude/root/TLorentzVector.h >Xinclude/root/TMD5.h >Xinclude/root/TMLPAnalyzer.h >Xinclude/root/TMPClient.h >Xinclude/root/TMPWorker.h >Xinclude/root/TMPWorkerExecutor.h >Xinclude/root/TMPWorkerTree.h >Xinclude/root/TMVA/BDT.h >Xinclude/root/TMVA/BDTControlPlots.h >Xinclude/root/TMVA/BDTEventWrapper.h >Xinclude/root/TMVA/BDT_Reg.h >Xinclude/root/TMVA/BinarySearchTree.h >Xinclude/root/TMVA/BinarySearchTreeNode.h >Xinclude/root/TMVA/BinaryTree.h >Xinclude/root/TMVA/BoostControlPlots.h >Xinclude/root/TMVA/CCPruner.h >Xinclude/root/TMVA/CCTreeWrapper.h >Xinclude/root/TMVA/ClassInfo.h >Xinclude/root/TMVA/Classification.h >Xinclude/root/TMVA/ClassifierFactory.h >Xinclude/root/TMVA/Config.h >Xinclude/root/TMVA/Configurable.h >Xinclude/root/TMVA/ConvergenceTest.h >Xinclude/root/TMVA/CorrGui.h >Xinclude/root/TMVA/CorrGuiMultiClass.h >Xinclude/root/TMVA/CostComplexityPruneTool.h >Xinclude/root/TMVA/CrossEntropy.h >Xinclude/root/TMVA/CrossValidation.h >Xinclude/root/TMVA/CvSplit.h >Xinclude/root/TMVA/DNN/Adadelta.h >Xinclude/root/TMVA/DNN/Adagrad.h >Xinclude/root/TMVA/DNN/Adam.h >Xinclude/root/TMVA/DNN/Architectures/Cpu.h >Xinclude/root/TMVA/DNN/Architectures/Cpu/Blas.h >Xinclude/root/TMVA/DNN/Architectures/Cpu/CpuBuffer.h >Xinclude/root/TMVA/DNN/Architectures/Cpu/CpuMatrix.h >Xinclude/root/TMVA/DNN/Architectures/Cpu/CpuTensor.h >Xinclude/root/TMVA/DNN/Architectures/Reference.h >Xinclude/root/TMVA/DNN/Architectures/Reference/DataLoader.h >Xinclude/root/TMVA/DNN/Architectures/Reference/TensorDataLoader.h >Xinclude/root/TMVA/DNN/Architectures/TCudnn.h >Xinclude/root/TMVA/DNN/BatchNormLayer.h >Xinclude/root/TMVA/DNN/CNN/ContextHandles.h >Xinclude/root/TMVA/DNN/CNN/ConvLayer.h >Xinclude/root/TMVA/DNN/CNN/MaxPoolLayer.h >Xinclude/root/TMVA/DNN/DLMinimizers.h >Xinclude/root/TMVA/DNN/DataLoader.h >Xinclude/root/TMVA/DNN/DeepNet.h >Xinclude/root/TMVA/DNN/DenseLayer.h >Xinclude/root/TMVA/DNN/Functions.h >Xinclude/root/TMVA/DNN/GeneralLayer.h >Xinclude/root/TMVA/DNN/Layer.h >Xinclude/root/TMVA/DNN/Minimizers.h >Xinclude/root/TMVA/DNN/Net.h >Xinclude/root/TMVA/DNN/Optimizer.h >Xinclude/root/TMVA/DNN/RMSProp.h >Xinclude/root/TMVA/DNN/RNN/GRULayer.h >Xinclude/root/TMVA/DNN/RNN/LSTMLayer.h >Xinclude/root/TMVA/DNN/RNN/RNNLayer.h >Xinclude/root/TMVA/DNN/ReshapeLayer.h >Xinclude/root/TMVA/DNN/SGD.h >Xinclude/root/TMVA/DNN/TensorDataLoader.h >Xinclude/root/TMVA/DataInputHandler.h >Xinclude/root/TMVA/DataLoader.h >Xinclude/root/TMVA/DataSet.h >Xinclude/root/TMVA/DataSetFactory.h >Xinclude/root/TMVA/DataSetInfo.h >Xinclude/root/TMVA/DataSetManager.h >Xinclude/root/TMVA/DecisionTree.h >Xinclude/root/TMVA/DecisionTreeNode.h >Xinclude/root/TMVA/Envelope.h >Xinclude/root/TMVA/Event.h >Xinclude/root/TMVA/Executor.h >Xinclude/root/TMVA/ExpectedErrorPruneTool.h >Xinclude/root/TMVA/Factory.h >Xinclude/root/TMVA/FitterBase.h >Xinclude/root/TMVA/GeneticAlgorithm.h >Xinclude/root/TMVA/GeneticFitter.h >Xinclude/root/TMVA/GeneticGenes.h >Xinclude/root/TMVA/GeneticPopulation.h >Xinclude/root/TMVA/GeneticRange.h >Xinclude/root/TMVA/GiniIndex.h >Xinclude/root/TMVA/GiniIndexWithLaplace.h >Xinclude/root/TMVA/HyperParameterOptimisation.h >Xinclude/root/TMVA/IFitterTarget.h >Xinclude/root/TMVA/IMethod.h >Xinclude/root/TMVA/IPruneTool.h >Xinclude/root/TMVA/Interval.h >Xinclude/root/TMVA/KDEKernel.h >Xinclude/root/TMVA/LDA.h >Xinclude/root/TMVA/LogInterval.h >Xinclude/root/TMVA/LossFunction.h >Xinclude/root/TMVA/MCFitter.h >Xinclude/root/TMVA/MethodANNBase.h >Xinclude/root/TMVA/MethodBDT.h >Xinclude/root/TMVA/MethodBase.h >Xinclude/root/TMVA/MethodBayesClassifier.h >Xinclude/root/TMVA/MethodBoost.h >Xinclude/root/TMVA/MethodCFMlpANN.h >Xinclude/root/TMVA/MethodCFMlpANN_Utils.h >Xinclude/root/TMVA/MethodCFMlpANN_def.h >Xinclude/root/TMVA/MethodCategory.h >Xinclude/root/TMVA/MethodCompositeBase.h >Xinclude/root/TMVA/MethodCrossValidation.h >Xinclude/root/TMVA/MethodCuts.h >Xinclude/root/TMVA/MethodDL.h >Xinclude/root/TMVA/MethodDNN.h >Xinclude/root/TMVA/MethodDT.h >Xinclude/root/TMVA/MethodFDA.h >Xinclude/root/TMVA/MethodFisher.h >Xinclude/root/TMVA/MethodHMatrix.h >Xinclude/root/TMVA/MethodKNN.h >Xinclude/root/TMVA/MethodLD.h >Xinclude/root/TMVA/MethodLikelihood.h >Xinclude/root/TMVA/MethodMLP.h >Xinclude/root/TMVA/MethodPDEFoam.h >Xinclude/root/TMVA/MethodPDERS.h >Xinclude/root/TMVA/MethodPyAdaBoost.h >Xinclude/root/TMVA/MethodPyGTB.h >Xinclude/root/TMVA/MethodPyKeras.h >Xinclude/root/TMVA/MethodPyRandomForest.h >Xinclude/root/TMVA/MethodPyTorch.h >Xinclude/root/TMVA/MethodRuleFit.h >Xinclude/root/TMVA/MethodSVM.h >Xinclude/root/TMVA/MethodTMlpANN.h >Xinclude/root/TMVA/MinuitFitter.h >Xinclude/root/TMVA/MinuitWrapper.h >Xinclude/root/TMVA/MisClassificationError.h >Xinclude/root/TMVA/ModulekNN.h >Xinclude/root/TMVA/Monitoring.h >Xinclude/root/TMVA/MovieMaker.h >Xinclude/root/TMVA/MsgLogger.h >Xinclude/root/TMVA/NeuralNet.h >Xinclude/root/TMVA/NeuralNet.icc >Xinclude/root/TMVA/Node.h >Xinclude/root/TMVA/NodekNN.h >Xinclude/root/TMVA/OperatorList.hxx >Xinclude/root/TMVA/OptimizeConfigParameters.h >Xinclude/root/TMVA/Option.h >Xinclude/root/TMVA/OptionMap.h >Xinclude/root/TMVA/PDEFoam.h >Xinclude/root/TMVA/PDEFoamCell.h >Xinclude/root/TMVA/PDEFoamDecisionTree.h >Xinclude/root/TMVA/PDEFoamDecisionTreeDensity.h >Xinclude/root/TMVA/PDEFoamDensityBase.h >Xinclude/root/TMVA/PDEFoamDiscriminant.h >Xinclude/root/TMVA/PDEFoamDiscriminantDensity.h >Xinclude/root/TMVA/PDEFoamEvent.h >Xinclude/root/TMVA/PDEFoamEventDensity.h >Xinclude/root/TMVA/PDEFoamKernelBase.h >Xinclude/root/TMVA/PDEFoamKernelGauss.h >Xinclude/root/TMVA/PDEFoamKernelLinN.h >Xinclude/root/TMVA/PDEFoamKernelTrivial.h >Xinclude/root/TMVA/PDEFoamMultiTarget.h >Xinclude/root/TMVA/PDEFoamTarget.h >Xinclude/root/TMVA/PDEFoamTargetDensity.h >Xinclude/root/TMVA/PDEFoamVect.h >Xinclude/root/TMVA/PDF.h >Xinclude/root/TMVA/Pattern.h >Xinclude/root/TMVA/PlotFoams.h >Xinclude/root/TMVA/PyMethodBase.h >Xinclude/root/TMVA/QuickMVAProbEstimator.h >Xinclude/root/TMVA/RBDT.hxx >Xinclude/root/TMVA/RInferenceUtils.hxx >Xinclude/root/TMVA/RModel.hxx >Xinclude/root/TMVA/RModelParser_Keras.h >Xinclude/root/TMVA/RModelParser_PyTorch.h >Xinclude/root/TMVA/ROCCalc.h >Xinclude/root/TMVA/ROCCurve.h >Xinclude/root/TMVA/ROperator.hxx >Xinclude/root/TMVA/ROperator_Add.hxx >Xinclude/root/TMVA/ROperator_BatchNormalization.hxx >Xinclude/root/TMVA/ROperator_Conv.hxx >Xinclude/root/TMVA/ROperator_GRU.hxx >Xinclude/root/TMVA/ROperator_GRU.icc >Xinclude/root/TMVA/ROperator_Gemm.hxx >Xinclude/root/TMVA/ROperator_LSTM.hxx >Xinclude/root/TMVA/ROperator_LSTM.icc >Xinclude/root/TMVA/ROperator_Pool.hxx >Xinclude/root/TMVA/ROperator_RNN.hxx >Xinclude/root/TMVA/ROperator_RNN.icc >Xinclude/root/TMVA/ROperator_Relu.hxx >Xinclude/root/TMVA/ROperator_Reshape.hxx >Xinclude/root/TMVA/ROperator_Selu.hxx >Xinclude/root/TMVA/ROperator_Sigmoid.hxx >Xinclude/root/TMVA/ROperator_Slice.hxx >Xinclude/root/TMVA/ROperator_Transpose.hxx >Xinclude/root/TMVA/RReader.hxx >Xinclude/root/TMVA/RStandardScaler.hxx >Xinclude/root/TMVA/RTensor.hxx >Xinclude/root/TMVA/RTensorUtils.hxx >Xinclude/root/TMVA/Ranking.h >Xinclude/root/TMVA/Reader.h >Xinclude/root/TMVA/RegressionVariance.h >Xinclude/root/TMVA/Results.h >Xinclude/root/TMVA/ResultsClassification.h >Xinclude/root/TMVA/ResultsMulticlass.h >Xinclude/root/TMVA/ResultsRegression.h >Xinclude/root/TMVA/RootFinder.h >Xinclude/root/TMVA/Rule.h >Xinclude/root/TMVA/RuleCut.h >Xinclude/root/TMVA/RuleEnsemble.h >Xinclude/root/TMVA/RuleFit.h >Xinclude/root/TMVA/RuleFitAPI.h >Xinclude/root/TMVA/RuleFitParams.h >Xinclude/root/TMVA/SOFIE_common.hxx >Xinclude/root/TMVA/SVEvent.h >Xinclude/root/TMVA/SVKernelFunction.h >Xinclude/root/TMVA/SVKernelMatrix.h >Xinclude/root/TMVA/SVWorkingSet.h >Xinclude/root/TMVA/SdivSqrtSplusB.h >Xinclude/root/TMVA/SeparationBase.h >Xinclude/root/TMVA/SimulatedAnnealing.h >Xinclude/root/TMVA/SimulatedAnnealingFitter.h >Xinclude/root/TMVA/TActivation.h >Xinclude/root/TMVA/TActivationChooser.h >Xinclude/root/TMVA/TActivationIdentity.h >Xinclude/root/TMVA/TActivationRadial.h >Xinclude/root/TMVA/TActivationReLU.h >Xinclude/root/TMVA/TActivationSigmoid.h >Xinclude/root/TMVA/TActivationTanh.h >Xinclude/root/TMVA/TMVAGui.h >Xinclude/root/TMVA/TMVAMultiClassGui.h >Xinclude/root/TMVA/TMVARegGui.h >Xinclude/root/TMVA/TNeuron.h >Xinclude/root/TMVA/TNeuronInput.h >Xinclude/root/TMVA/TNeuronInputAbs.h >Xinclude/root/TMVA/TNeuronInputChooser.h >Xinclude/root/TMVA/TNeuronInputSqSum.h >Xinclude/root/TMVA/TNeuronInputSum.h >Xinclude/root/TMVA/TSpline1.h >Xinclude/root/TMVA/TSpline2.h >Xinclude/root/TMVA/TSynapse.h >Xinclude/root/TMVA/Timer.h >Xinclude/root/TMVA/Tools.h >Xinclude/root/TMVA/TrainingHistory.h >Xinclude/root/TMVA/TransformationHandler.h >Xinclude/root/TMVA/TreeInference/BranchlessTree.hxx >Xinclude/root/TMVA/TreeInference/Forest.hxx >Xinclude/root/TMVA/TreeInference/Objectives.hxx >Xinclude/root/TMVA/TreeInference/PythonHelpers.hxx >Xinclude/root/TMVA/Types.h >Xinclude/root/TMVA/VarTransformHandler.h >Xinclude/root/TMVA/VariableDecorrTransform.h >Xinclude/root/TMVA/VariableGaussTransform.h >Xinclude/root/TMVA/VariableIdentityTransform.h >Xinclude/root/TMVA/VariableImportance.h >Xinclude/root/TMVA/VariableInfo.h >Xinclude/root/TMVA/VariableNormalizeTransform.h >Xinclude/root/TMVA/VariablePCATransform.h >Xinclude/root/TMVA/VariableRearrangeTransform.h >Xinclude/root/TMVA/VariableTransform.h >Xinclude/root/TMVA/VariableTransformBase.h >Xinclude/root/TMVA/Version.h >Xinclude/root/TMVA/Volume.h >Xinclude/root/TMVA/annconvergencetest.h >Xinclude/root/TMVA/compareanapp.h >Xinclude/root/TMVA/correlations.h >Xinclude/root/TMVA/correlationsMultiClass.h >Xinclude/root/TMVA/correlationscatters.h >Xinclude/root/TMVA/correlationscattersMultiClass.h >Xinclude/root/TMVA/deviations.h >Xinclude/root/TMVA/efficiencies.h >Xinclude/root/TMVA/efficienciesMulticlass.h >Xinclude/root/TMVA/likelihoodrefs.h >Xinclude/root/TMVA/mvaeffs.h >Xinclude/root/TMVA/mvas.h >Xinclude/root/TMVA/mvasMulticlass.h >Xinclude/root/TMVA/mvaweights.h >Xinclude/root/TMVA/network.h >Xinclude/root/TMVA/paracoor.h >Xinclude/root/TMVA/probas.h >Xinclude/root/TMVA/regression_averagedevs.h >Xinclude/root/TMVA/rulevis.h >Xinclude/root/TMVA/rulevisCorr.h >Xinclude/root/TMVA/rulevisHists.h >Xinclude/root/TMVA/tmvaglob.h >Xinclude/root/TMVA/training_history.h >Xinclude/root/TMVA/variables.h >Xinclude/root/TMVA/variablesMultiClass.h >Xinclude/root/TMacro.h >Xinclude/root/TMakeProject.h >Xinclude/root/TMap.h >Xinclude/root/TMapFile.h >Xinclude/root/TMarker.h >Xinclude/root/TMarker3DBox.h >Xinclude/root/TMaterial.h >Xinclude/root/TMath.h >Xinclude/root/TMathBase.h >Xinclude/root/TMathText.h >Xinclude/root/TMatrix.h >Xinclude/root/TMatrixD.h >Xinclude/root/TMatrixDBase.h >Xinclude/root/TMatrixDBasefwd.h >Xinclude/root/TMatrixDEigen.h >Xinclude/root/TMatrixDLazy.h >Xinclude/root/TMatrixDSparse.h >Xinclude/root/TMatrixDSparsefwd.h >Xinclude/root/TMatrixDSym.h >Xinclude/root/TMatrixDSymEigen.h >Xinclude/root/TMatrixDSymfwd.h >Xinclude/root/TMatrixDUtils.h >Xinclude/root/TMatrixDUtilsfwd.h >Xinclude/root/TMatrixDfwd.h >Xinclude/root/TMatrixF.h >Xinclude/root/TMatrixFBase.h >Xinclude/root/TMatrixFBasefwd.h >Xinclude/root/TMatrixFLazy.h >Xinclude/root/TMatrixFSparse.h >Xinclude/root/TMatrixFSparsefwd.h >Xinclude/root/TMatrixFSym.h >Xinclude/root/TMatrixFSymfwd.h >Xinclude/root/TMatrixFUtils.h >Xinclude/root/TMatrixFUtilsfwd.h >Xinclude/root/TMatrixFfwd.h >Xinclude/root/TMatrixT.h >Xinclude/root/TMatrixTBase.h >Xinclude/root/TMatrixTCramerInv.h >Xinclude/root/TMatrixTLazy.h >Xinclude/root/TMatrixTSparse.h >Xinclude/root/TMatrixTSym.h >Xinclude/root/TMatrixTSymCramerInv.h >Xinclude/root/TMatrixTUtils.h >Xinclude/root/TMehrotraSolver.h >Xinclude/root/TMemFile.h >Xinclude/root/TMemberInspector.h >Xinclude/root/TMemberStreamer.h >Xinclude/root/TMessage.h >Xinclude/root/TMessageHandler.h >Xinclude/root/TMethod.h >Xinclude/root/TMethodArg.h >Xinclude/root/TMethodCall.h >Xinclude/root/TMinuit.h >Xinclude/root/TMinuit2TraceObject.h >Xinclude/root/TMinuitMinimizer.h >Xinclude/root/TMixture.h >Xinclude/root/TMonitor.h >Xinclude/root/TMultiDimFit.h >Xinclude/root/TMultiGraph.h >Xinclude/root/TMultiLayerPerceptron.h >Xinclude/root/TMutex.h >Xinclude/root/TMutexImp.h >Xinclude/root/TMySQLResult.h >Xinclude/root/TMySQLRow.h >Xinclude/root/TMySQLServer.h >Xinclude/root/TMySQLStatement.h >Xinclude/root/TNDArray.h >Xinclude/root/TNamed.h >Xinclude/root/TNetFile.h >Xinclude/root/TNetFileStager.h >Xinclude/root/TNetXNGFile.h >Xinclude/root/TNetXNGFileStager.h >Xinclude/root/TNetXNGSystem.h >Xinclude/root/TNeuron.h >Xinclude/root/TNode.h >Xinclude/root/TNodeDiv.h >Xinclude/root/TNotifyLink.h >Xinclude/root/TNtuple.h >Xinclude/root/TNtupleD.h >Xinclude/root/TObjArray.h >Xinclude/root/TObjString.h >Xinclude/root/TObject.h >Xinclude/root/TObjectSpy.h >Xinclude/root/TObjectTable.h >Xinclude/root/TOrdCollection.h >Xinclude/root/TOutputListSelectorDataMap.h >Xinclude/root/TPARA.h >Xinclude/root/TPCON.h >Xinclude/root/TPDF.h >Xinclude/root/TPDGCode.h >Xinclude/root/TPGON.h >Xinclude/root/TPRegexp.h >Xinclude/root/TPServerSocket.h >Xinclude/root/TPSocket.h >Xinclude/root/TPackMgr.h >Xinclude/root/TPacketizer.h >Xinclude/root/TPacketizerAdaptive.h >Xinclude/root/TPacketizerFile.h >Xinclude/root/TPacketizerMulti.h >Xinclude/root/TPacketizerUnit.h >Xinclude/root/TPad.h >Xinclude/root/TPadEditor.h >Xinclude/root/TPadPainter.h >Xinclude/root/TPaletteAxis.h >Xinclude/root/TParallelCoord.h >Xinclude/root/TParallelCoordEditor.h >Xinclude/root/TParallelCoordRange.h >Xinclude/root/TParallelCoordVar.h >Xinclude/root/TParallelMergingFile.h >Xinclude/root/TParameter.h >Xinclude/root/TParticle.h >Xinclude/root/TParticleClassPDG.h >Xinclude/root/TParticlePDG.h >Xinclude/root/TPave.h >Xinclude/root/TPaveClass.h >Xinclude/root/TPaveLabel.h >Xinclude/root/TPaveStats.h >Xinclude/root/TPaveStatsEditor.h >Xinclude/root/TPaveText.h >Xinclude/root/TPavesText.h >Xinclude/root/TPerfStats.h >Xinclude/root/TPgSQLResult.h >Xinclude/root/TPgSQLRow.h >Xinclude/root/TPgSQLServer.h >Xinclude/root/TPgSQLStatement.h >Xinclude/root/TPie.h >Xinclude/root/TPieEditor.h >Xinclude/root/TPieSlice.h >Xinclude/root/TPieSliceEditor.h >Xinclude/root/TPluginManager.h >Xinclude/root/TPoint.h >Xinclude/root/TPointSet3D.h >Xinclude/root/TPointSet3DGL.h >Xinclude/root/TPoints.h >Xinclude/root/TPoints3DABC.h >Xinclude/root/TPolyLine.h >Xinclude/root/TPolyLine3D.h >Xinclude/root/TPolyMarker.h >Xinclude/root/TPolyMarker3D.h >Xinclude/root/TPosixCondition.h >Xinclude/root/TPosixMutex.h >Xinclude/root/TPosixThread.h >Xinclude/root/TPosixThreadFactory.h >Xinclude/root/TPostScript.h >Xinclude/root/TPrimary.h >Xinclude/root/TPrincipal.h >Xinclude/root/TProcPool.h >Xinclude/root/TProcessID.h >Xinclude/root/TProcessUUID.h >Xinclude/root/TProfile.h >Xinclude/root/TProfile2D.h >Xinclude/root/TProfile2Poly.h >Xinclude/root/TProfile3D.h >Xinclude/root/TProof.h >Xinclude/root/TProofBench.h >Xinclude/root/TProofBenchDataSet.h >Xinclude/root/TProofBenchRun.h >Xinclude/root/TProofBenchRunCPU.h >Xinclude/root/TProofBenchRunDataRead.h >Xinclude/root/TProofBenchTypes.h >Xinclude/root/TProofChain.h >Xinclude/root/TProofCondor.h >Xinclude/root/TProofDebug.h >Xinclude/root/TProofDraw.h >Xinclude/root/TProofLimitsFinder.h >Xinclude/root/TProofLite.h >Xinclude/root/TProofLog.h >Xinclude/root/TProofMgr.h >Xinclude/root/TProofMgrLite.h >Xinclude/root/TProofMonSender.h >Xinclude/root/TProofMonSenderML.h >Xinclude/root/TProofMonSenderSQL.h >Xinclude/root/TProofNodeInfo.h >Xinclude/root/TProofNodes.h >Xinclude/root/TProofOutputFile.h >Xinclude/root/TProofOutputList.h >Xinclude/root/TProofPerfAnalysis.h >Xinclude/root/TProofPlayer.h >Xinclude/root/TProofPlayerLite.h >Xinclude/root/TProofProgressDialog.h >Xinclude/root/TProofProgressLog.h >Xinclude/root/TProofProgressMemoryPlot.h >Xinclude/root/TProofProgressStatus.h >Xinclude/root/TProofQueryResult.h >Xinclude/root/TProofResources.h >Xinclude/root/TProofResourcesStatic.h >Xinclude/root/TProofServ.h >Xinclude/root/TProofServLite.h >Xinclude/root/TProofSuperMaster.h >Xinclude/root/TProtoClass.h >Xinclude/root/TPyArg.h >Xinclude/root/TPyClassGenerator.h >Xinclude/root/TPyReturn.h >Xinclude/root/TPython.h >Xinclude/root/TQClass.h >Xinclude/root/TQCommand.h >Xinclude/root/TQConnection.h >Xinclude/root/TQObject.h >Xinclude/root/TQpDataBase.h >Xinclude/root/TQpDataDens.h >Xinclude/root/TQpDataSparse.h >Xinclude/root/TQpLinSolverBase.h >Xinclude/root/TQpLinSolverDens.h >Xinclude/root/TQpLinSolverSparse.h >Xinclude/root/TQpProbBase.h >Xinclude/root/TQpProbDens.h >Xinclude/root/TQpProbSparse.h >Xinclude/root/TQpResidual.h >Xinclude/root/TQpSolverBase.h >Xinclude/root/TQpVar.h >Xinclude/root/TQuaternion.h >Xinclude/root/TQueryResult.h >Xinclude/root/TQueryResultManager.h >Xinclude/root/TROOT.h >Xinclude/root/TRWLock.h >Xinclude/root/TRandom.h >Xinclude/root/TRandom1.h >Xinclude/root/TRandom2.h >Xinclude/root/TRandom3.h >Xinclude/root/TRandomGen.h >Xinclude/root/TRatioPlot.h >Xinclude/root/TRealData.h >Xinclude/root/TRecorder.h >Xinclude/root/TRedirectOutputGuard.h >Xinclude/root/TRef.h >Xinclude/root/TRefArray.h >Xinclude/root/TRefArrayProxy.h >Xinclude/root/TRefCnt.h >Xinclude/root/TRefProxy.h >Xinclude/root/TRefTable.h >Xinclude/root/TRegexp.h >Xinclude/root/TRemoteObject.h >Xinclude/root/TRint.h >Xinclude/root/TRobustEstimator.h >Xinclude/root/TRolke.h >Xinclude/root/TRootApplication.h >Xinclude/root/TRootAuth.h >Xinclude/root/TRootBrowser.h >Xinclude/root/TRootBrowserLite.h >Xinclude/root/TRootCanvas.h >Xinclude/root/TRootContextMenu.h >Xinclude/root/TRootControlBar.h >Xinclude/root/TRootDialog.h >Xinclude/root/TRootEmbeddedCanvas.h >Xinclude/root/TRootGuiBuilder.h >Xinclude/root/TRootGuiFactory.h >Xinclude/root/TRootHelpDialog.h >Xinclude/root/TRootIOCtor.h >Xinclude/root/TRootSecContext.h >Xinclude/root/TRootSniffer.h >Xinclude/root/TRootSnifferFull.h >Xinclude/root/TRootSnifferStore.h >Xinclude/root/TRotMatrix.h >Xinclude/root/TRotation.h >Xinclude/root/TS3HTTPRequest.h >Xinclude/root/TS3WebFile.h >Xinclude/root/TSAXParser.h >Xinclude/root/TSPHE.h >Xinclude/root/TSPlot.h >Xinclude/root/TSQLClassInfo.h >Xinclude/root/TSQLColumnInfo.h >Xinclude/root/TSQLFile.h >Xinclude/root/TSQLMonitoring.h >Xinclude/root/TSQLObjectData.h >Xinclude/root/TSQLResult.h >Xinclude/root/TSQLRow.h >Xinclude/root/TSQLServer.h >Xinclude/root/TSQLStatement.h >Xinclude/root/TSQLStructure.h >Xinclude/root/TSQLTableInfo.h >Xinclude/root/TSQLiteResult.h >Xinclude/root/TSQLiteRow.h >Xinclude/root/TSQLiteServer.h >Xinclude/root/TSQLiteStatement.h >Xinclude/root/TSSLSocket.h >Xinclude/root/TSVDUnfold.h >Xinclude/root/TSVG.h >Xinclude/root/TSchemaHelper.h >Xinclude/root/TSchemaRule.h >Xinclude/root/TSchemaRuleSet.h >Xinclude/root/TSecContext.h >Xinclude/root/TSelVerifyDataSet.h >Xinclude/root/TSelector.h >Xinclude/root/TSelectorDraw.h >Xinclude/root/TSelectorEntries.h >Xinclude/root/TSelectorList.h >Xinclude/root/TSelectorScalar.h >Xinclude/root/TSemaphore.h >Xinclude/root/TSeqCollection.h >Xinclude/root/TServerSocket.h >Xinclude/root/TSessionDialogs.h >Xinclude/root/TSessionLogView.h >Xinclude/root/TSessionViewer.h >Xinclude/root/TShape.h >Xinclude/root/TSimpleAnalysis.h >Xinclude/root/TSlave.h >Xinclude/root/TSlaveLite.h >Xinclude/root/TSlider.h >Xinclude/root/TSliderBox.h >Xinclude/root/TSocket.h >Xinclude/root/TSortedList.h >Xinclude/root/TSpectrum.h >Xinclude/root/TSpectrum2.h >Xinclude/root/TSpectrum2Fit.h >Xinclude/root/TSpectrum2Painter.h >Xinclude/root/TSpectrum2Transform.h >Xinclude/root/TSpectrum3.h >Xinclude/root/TSpectrumFit.h >Xinclude/root/TSpectrumTransform.h >Xinclude/root/TSpider.h >Xinclude/root/TSpiderEditor.h >Xinclude/root/TSpline.h >Xinclude/root/TStatistic.h >Xinclude/root/TStatsFeedback.h >Xinclude/root/TStatus.h >Xinclude/root/TStatusBitsChecker.h >Xinclude/root/TStopwatch.h >Xinclude/root/TStorage.h >Xinclude/root/TStreamer.h >Xinclude/root/TStreamerElement.h >Xinclude/root/TStreamerInfo.h >Xinclude/root/TStreamerInfoActions.h >Xinclude/root/TString.h >Xinclude/root/TStringLong.h >Xinclude/root/TStructNode.h >Xinclude/root/TStructNodeEditor.h >Xinclude/root/TStructNodeProperty.h >Xinclude/root/TStructViewer.h >Xinclude/root/TStructViewerGUI.h >Xinclude/root/TStyle.h >Xinclude/root/TStyleDialog.h >Xinclude/root/TStyleManager.h >Xinclude/root/TStylePreview.h >Xinclude/root/TSynapse.h >Xinclude/root/TSysEvtHandler.h >Xinclude/root/TSystem.h >Xinclude/root/TSystemDirectory.h >Xinclude/root/TSystemFile.h >Xinclude/root/TTF.h >Xinclude/root/TTRAP.h >Xinclude/root/TTRD1.h >Xinclude/root/TTRD2.h >Xinclude/root/TTUBE.h >Xinclude/root/TTUBS.h >Xinclude/root/TTVLVContainer.h >Xinclude/root/TTVSession.h >Xinclude/root/TTabCom.h >Xinclude/root/TTask.h >Xinclude/root/TTeXDump.h >Xinclude/root/TText.h >Xinclude/root/TTextEditor.h >Xinclude/root/TThread.h >Xinclude/root/TThreadFactory.h >Xinclude/root/TThreadImp.h >Xinclude/root/TThreadPool.h >Xinclude/root/TThreadSlots.h >Xinclude/root/TTime.h >Xinclude/root/TTimeStamp.h >Xinclude/root/TTimer.h >Xinclude/root/TToggle.h >Xinclude/root/TToggleGroup.h >Xinclude/root/TTree.h >Xinclude/root/TTreeCache.h >Xinclude/root/TTreeCacheUnzip.h >Xinclude/root/TTreeCloner.h >Xinclude/root/TTreeDrawArgsParser.h >Xinclude/root/TTreeFormula.h >Xinclude/root/TTreeFormulaManager.h >Xinclude/root/TTreeGeneratorBase.h >Xinclude/root/TTreeIndex.h >Xinclude/root/TTreeInput.h >Xinclude/root/TTreePerfStats.h >Xinclude/root/TTreePlayer.h >Xinclude/root/TTreeProxyGenerator.h >Xinclude/root/TTreeReader.h >Xinclude/root/TTreeReaderArray.h >Xinclude/root/TTreeReaderGenerator.h >Xinclude/root/TTreeReaderUtils.h >Xinclude/root/TTreeReaderValue.h >Xinclude/root/TTreeResult.h >Xinclude/root/TTreeRow.h >Xinclude/root/TTreeSQL.h >Xinclude/root/TTreeTableInterface.h >Xinclude/root/TTreeViewer.h >Xinclude/root/TUDPSocket.h >Xinclude/root/TUUID.h >Xinclude/root/TUnfold.h >Xinclude/root/TUnfoldBinning.h >Xinclude/root/TUnfoldBinningXML.h >Xinclude/root/TUnfoldDensity.h >Xinclude/root/TUnfoldSys.h >Xinclude/root/TUnixSystem.h >Xinclude/root/TUri.h >Xinclude/root/TUrl.h >Xinclude/root/TVector.h >Xinclude/root/TVector2.h >Xinclude/root/TVector3.h >Xinclude/root/TVectorD.h >Xinclude/root/TVectorDfwd.h >Xinclude/root/TVectorF.h >Xinclude/root/TVectorFfwd.h >Xinclude/root/TVectorT.h >Xinclude/root/TVectorfwd.h >Xinclude/root/TVersionCheck.h >Xinclude/root/TView.h >Xinclude/root/TView3D.h >Xinclude/root/TViewer3DPad.h >Xinclude/root/TViewerX3D.h >Xinclude/root/TVirtualArray.h >Xinclude/root/TVirtualAuth.h >Xinclude/root/TVirtualCollectionIterators.h >Xinclude/root/TVirtualCollectionProxy.h >Xinclude/root/TVirtualDragManager.h >Xinclude/root/TVirtualFFT.h >Xinclude/root/TVirtualFitter.h >Xinclude/root/TVirtualGL.h >Xinclude/root/TVirtualGeoConverter.h >Xinclude/root/TVirtualGeoPainter.h >Xinclude/root/TVirtualGeoTrack.h >Xinclude/root/TVirtualGraphPainter.h >Xinclude/root/TVirtualHistPainter.h >Xinclude/root/TVirtualIndex.h >Xinclude/root/TVirtualIsAProxy.h >Xinclude/root/TVirtualMCDecayer.h >Xinclude/root/TVirtualMagField.h >Xinclude/root/TVirtualMonitoring.h >Xinclude/root/TVirtualMutex.h >Xinclude/root/TVirtualObject.h >Xinclude/root/TVirtualPS.h >Xinclude/root/TVirtualPacketizer.h >Xinclude/root/TVirtualPad.h >Xinclude/root/TVirtualPadEditor.h >Xinclude/root/TVirtualPadPainter.h >Xinclude/root/TVirtualPaveStats.h >Xinclude/root/TVirtualPerfStats.h >Xinclude/root/TVirtualProofPlayer.h >Xinclude/root/TVirtualQConnection.h >Xinclude/root/TVirtualRWMutex.h >Xinclude/root/TVirtualRefProxy.h >Xinclude/root/TVirtualStreamerInfo.h >Xinclude/root/TVirtualTableInterface.h >Xinclude/root/TVirtualTreePlayer.h >Xinclude/root/TVirtualViewer3D.h >Xinclude/root/TVirtualX.h >Xinclude/root/TWbox.h >Xinclude/root/TWebFile.h >Xinclude/root/TWin32AtomicCount.h >Xinclude/root/TWin32Condition.h >Xinclude/root/TWin32Mutex.h >Xinclude/root/TWin32Thread.h >Xinclude/root/TWin32ThreadFactory.h >Xinclude/root/TX11GL.h >Xinclude/root/TX3DFrame.h >Xinclude/root/TXMLAttr.h >Xinclude/root/TXMLDocument.h >Xinclude/root/TXMLEngine.h >Xinclude/root/TXMLFile.h >Xinclude/root/TXMLNode.h >Xinclude/root/TXMLParser.h >Xinclude/root/TXMLPlayer.h >Xinclude/root/TXMLSetup.h >Xinclude/root/TXNetFile.h >Xinclude/root/TXNetFileStager.h >Xinclude/root/TXNetSystem.h >Xinclude/root/TXTRU.h >Xinclude/root/TZIPFile.h >Xinclude/root/ThreadLocalStorage.h >Xinclude/root/TreeUtils.h >Xinclude/root/Varargs.h >Xinclude/root/VectorizedTMath.h >Xinclude/root/WidgetMessageTypes.h >Xinclude/root/X3DBuffer.h >Xinclude/root/ZipLZ4.h >Xinclude/root/ZipLZMA.h >Xinclude/root/ZipZSTD.h >Xinclude/root/cfortran.h >Xinclude/root/compiledata.h >Xinclude/root/module.modulemap >Xinclude/root/nlohmann/json.hpp >Xinclude/root/root_std_complex.h >Xinclude/root/snprintf.h >Xinclude/root/strlcpy.h >Xinclude/root/strtok.h >Xinclude/root/v5/TF1Data.h >Xinclude/root/v5/TFormula.h >Xinclude/root/v5/TFormulaPrimitive.h >Xlib/root/ASImage.pcm >Xlib/root/ASImageGui.pcm >Xlib/root/Cling_Runtime.pcm >Xlib/root/Cling_Runtime_Extra.pcm >Xlib/root/Core.pcm >Xlib/root/DistRDF/Backends/Base.py >Xlib/root/DistRDF/Backends/Dask/Backend.py >Xlib/root/DistRDF/Backends/Dask/__init__.py >Xlib/root/DistRDF/Backends/Spark/Backend.py >Xlib/root/DistRDF/Backends/Spark/__init__.py >Xlib/root/DistRDF/Backends/Spark/__pycache__/Backend.cpython-39.opt-1.pyc >Xlib/root/DistRDF/Backends/Spark/__pycache__/Backend.cpython-39.pyc >Xlib/root/DistRDF/Backends/Spark/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/DistRDF/Backends/Spark/__pycache__/__init__.cpython-39.pyc >Xlib/root/DistRDF/Backends/Utils.py >Xlib/root/DistRDF/Backends/__init__.py >Xlib/root/DistRDF/Backends/__pycache__/Base.cpython-39.opt-1.pyc >Xlib/root/DistRDF/Backends/__pycache__/Base.cpython-39.pyc >Xlib/root/DistRDF/Backends/__pycache__/Utils.cpython-39.opt-1.pyc >Xlib/root/DistRDF/Backends/__pycache__/Utils.cpython-39.pyc >Xlib/root/DistRDF/Backends/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/DistRDF/Backends/__pycache__/__init__.cpython-39.pyc >Xlib/root/DistRDF/ComputationGraphGenerator.py >Xlib/root/DistRDF/CppWorkflow.py >Xlib/root/DistRDF/DataFrame.py >Xlib/root/DistRDF/HeadNode.py >Xlib/root/DistRDF/Node.py >Xlib/root/DistRDF/Operation.py >Xlib/root/DistRDF/Proxy.py >Xlib/root/DistRDF/PythonMergeables.py >Xlib/root/DistRDF/Ranges.py >Xlib/root/DistRDF/__init__.py >Xlib/root/DistRDF/__pycache__/ComputationGraphGenerator.cpython-39.opt-1.pyc >Xlib/root/DistRDF/__pycache__/ComputationGraphGenerator.cpython-39.pyc >Xlib/root/DistRDF/__pycache__/DataFrame.cpython-39.opt-1.pyc >Xlib/root/DistRDF/__pycache__/DataFrame.cpython-39.pyc >Xlib/root/DistRDF/__pycache__/Node.cpython-39.opt-1.pyc >Xlib/root/DistRDF/__pycache__/Node.cpython-39.pyc >Xlib/root/DistRDF/__pycache__/Operation.cpython-39.opt-1.pyc >Xlib/root/DistRDF/__pycache__/Operation.cpython-39.pyc >Xlib/root/DistRDF/__pycache__/Proxy.cpython-39.opt-1.pyc >Xlib/root/DistRDF/__pycache__/Proxy.cpython-39.pyc >Xlib/root/DistRDF/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/DistRDF/__pycache__/__init__.cpython-39.pyc >Xlib/root/EG.pcm >Xlib/root/Eve.pcm >Xlib/root/FFTW.pcm >Xlib/root/FITSIO.pcm >Xlib/root/FitPanel.pcm >Xlib/root/Foam.pcm >Xlib/root/Fumili.pcm >Xlib/root/GX11.pcm >Xlib/root/GX11TTF.pcm >Xlib/root/Gdml.pcm >Xlib/root/Ged.pcm >Xlib/root/GenVector.pcm >Xlib/root/Genetic.pcm >Xlib/root/Geom.pcm >Xlib/root/GeomBuilder.pcm >Xlib/root/GeomPainter.pcm >Xlib/root/Gpad.pcm >Xlib/root/Graf.pcm >Xlib/root/Graf3d.pcm >Xlib/root/Gui.pcm >Xlib/root/GuiBld.pcm >Xlib/root/GuiHtml.pcm >Xlib/root/Gviz3d.pcm >Xlib/root/Hist.pcm >Xlib/root/HistFactory.pcm >Xlib/root/HistPainter.pcm >Xlib/root/Html.pcm >Xlib/root/Imt.pcm >Xlib/root/JsMVA/DataLoader.py >Xlib/root/JsMVA/Factory.py >Xlib/root/JsMVA/JPyInterface.py >Xlib/root/JsMVA/JsMVAMagic.py >Xlib/root/JsMVA/OutputTransformer.py >Xlib/root/JsMVA/Utils.py >Xlib/root/JsMVA/__init__.py >Xlib/root/JupyROOT/__init__.py >Xlib/root/JupyROOT/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/__pycache__/__init__.cpython-39.pyc >Xlib/root/JupyROOT/helpers/__init__.py >Xlib/root/JupyROOT/helpers/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/helpers/__pycache__/__init__.cpython-39.pyc >Xlib/root/JupyROOT/helpers/__pycache__/cppcompleter.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/helpers/__pycache__/cppcompleter.cpython-39.pyc >Xlib/root/JupyROOT/helpers/__pycache__/handlers.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/helpers/__pycache__/handlers.cpython-39.pyc >Xlib/root/JupyROOT/helpers/__pycache__/utils.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/helpers/__pycache__/utils.cpython-39.pyc >Xlib/root/JupyROOT/helpers/cppcompleter.py >Xlib/root/JupyROOT/helpers/handlers.py >Xlib/root/JupyROOT/helpers/utils.py >Xlib/root/JupyROOT/html/__init__.py >Xlib/root/JupyROOT/html/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/html/__pycache__/__init__.cpython-39.pyc >Xlib/root/JupyROOT/html/__pycache__/cpphighlighter.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/html/__pycache__/cpphighlighter.cpython-39.pyc >Xlib/root/JupyROOT/html/cpphighlighter.py >Xlib/root/JupyROOT/kernel/__init__.py >Xlib/root/JupyROOT/kernel/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/kernel/__pycache__/__init__.cpython-39.pyc >Xlib/root/JupyROOT/kernel/__pycache__/rootkernel.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/kernel/__pycache__/rootkernel.cpython-39.pyc >Xlib/root/JupyROOT/kernel/__pycache__/utils.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/kernel/__pycache__/utils.cpython-39.pyc >Xlib/root/JupyROOT/kernel/magics/__init__.py >Xlib/root/JupyROOT/kernel/magics/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/kernel/magics/__pycache__/__init__.cpython-39.pyc >Xlib/root/JupyROOT/kernel/magics/__pycache__/cppmagic.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/kernel/magics/__pycache__/cppmagic.cpython-39.pyc >Xlib/root/JupyROOT/kernel/magics/__pycache__/jsrootmagic.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/kernel/magics/__pycache__/jsrootmagic.cpython-39.pyc >Xlib/root/JupyROOT/kernel/magics/cppmagic.py >Xlib/root/JupyROOT/kernel/magics/jsrootmagic.py >Xlib/root/JupyROOT/kernel/rootkernel.py >Xlib/root/JupyROOT/kernel/utils.py >Xlib/root/JupyROOT/magics/__init__.py >Xlib/root/JupyROOT/magics/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/magics/__pycache__/__init__.cpython-39.pyc >Xlib/root/JupyROOT/magics/__pycache__/cppmagic.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/magics/__pycache__/cppmagic.cpython-39.pyc >Xlib/root/JupyROOT/magics/__pycache__/jsrootmagic.cpython-39.opt-1.pyc >Xlib/root/JupyROOT/magics/__pycache__/jsrootmagic.cpython-39.pyc >Xlib/root/JupyROOT/magics/cppmagic.py >Xlib/root/JupyROOT/magics/jsrootmagic.py >Xlib/root/MLP.pcm >Xlib/root/MathCore.pcm >Xlib/root/MathMore.pcm >Xlib/root/Matrix.pcm >Xlib/root/Minuit.pcm >Xlib/root/Minuit2.pcm >Xlib/root/MultiProc.pcm >Xlib/root/Net.pcm >Xlib/root/Netx.pcm >Xlib/root/NetxNG.pcm >Xlib/root/PgSQL.pcm >Xlib/root/Physics.pcm >Xlib/root/Postscript.pcm >Xlib/root/Proof.pcm >Xlib/root/ProofBench.pcm >Xlib/root/ProofDraw.pcm >Xlib/root/ProofPlayer.pcm >Xlib/root/PyMVA.pcm >Xlib/root/Quadp.pcm >Xlib/root/RCsg.pcm >Xlib/root/RGL.pcm >Xlib/root/RHTTP.pcm >Xlib/root/RHTTPSniff.pcm >Xlib/root/RIO.pcm >Xlib/root/RMySQL.pcm >Xlib/root/ROOT/__init__.py >Xlib/root/ROOT/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/ROOT/__pycache__/__init__.cpython-39.pyc >Xlib/root/ROOT/__pycache__/_application.cpython-39.opt-1.pyc >Xlib/root/ROOT/__pycache__/_application.cpython-39.pyc >Xlib/root/ROOT/__pycache__/_facade.cpython-39.opt-1.pyc >Xlib/root/ROOT/__pycache__/_facade.cpython-39.pyc >Xlib/root/ROOT/__pycache__/_numbadeclare.cpython-39.opt-1.pyc >Xlib/root/ROOT/__pycache__/_numbadeclare.cpython-39.pyc >Xlib/root/ROOT/_application.py >Xlib/root/ROOT/_facade.py >Xlib/root/ROOT/_numbadeclare.py >Xlib/root/ROOT/_pythonization/__init__.py >Xlib/root/ROOT/_pythonization/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/__init__.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_cppinstance.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_cppinstance.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_drawables.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_drawables.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_generic.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_generic.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rbdt.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rbdt.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rdataframe.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rdataframe.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rdf_utils.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rdf_utils.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rdfdescription.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rdfdescription.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rtensor.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rtensor.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rvec.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_rvec.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_stl_vector.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_stl_vector.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tarray.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tarray.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tclass.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tclass.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tclonesarray.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tclonesarray.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tcollection.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tcollection.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tcomplex.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tcomplex.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tdirectory.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tdirectory.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tdirectoryfile.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tdirectoryfile.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tfile.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tfile.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tgraph.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tgraph.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_th1.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_th1.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_titer.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_titer.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tobject.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tobject.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tobjstring.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tobjstring.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tree_inference.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tree_inference.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tseqcollection.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tseqcollection.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tstring.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tstring.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_ttree.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_ttree.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tvector3.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tvector3.cpython-39.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tvectort.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/__pycache__/_tvectort.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_cppinstance.py >Xlib/root/ROOT/_pythonization/_drawables.py >Xlib/root/ROOT/_pythonization/_generic.py >Xlib/root/ROOT/_pythonization/_rbdt.py >Xlib/root/ROOT/_pythonization/_rdataframe.py >Xlib/root/ROOT/_pythonization/_rdf_utils.py >Xlib/root/ROOT/_pythonization/_rdfdescription.py >Xlib/root/ROOT/_pythonization/_roofit/__init__.py >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/__init__.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabscollection.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabscollection.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabsdata.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabsdata.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabspdf.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabspdf.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabsreal.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabsreal.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabsreallvalue.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooabsreallvalue.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooarglist.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooarglist.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooargset.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooargset.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roochi2var.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roochi2var.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roodatahist.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roodatahist.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roodataset.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roodataset.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roodecays.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roodecays.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roogenfitstudy.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roogenfitstudy.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roomcstudy.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roomcstudy.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roomsgservice.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roomsgservice.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roonllvar.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roonllvar.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooprodpdf.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooprodpdf.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roosimultaneous.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roosimultaneous.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roosimwstool.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_roosimwstool.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooworkspace.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_rooworkspace.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_utils.cpython-39.opt-1.pyc >Xlib/root/ROOT/_pythonization/_roofit/__pycache__/_utils.cpython-39.pyc >Xlib/root/ROOT/_pythonization/_roofit/_rooabscollection.py >Xlib/root/ROOT/_pythonization/_roofit/_rooabsdata.py >Xlib/root/ROOT/_pythonization/_roofit/_rooabspdf.py >Xlib/root/ROOT/_pythonization/_roofit/_rooabsreal.py >Xlib/root/ROOT/_pythonization/_roofit/_rooabsreallvalue.py >Xlib/root/ROOT/_pythonization/_roofit/_rooarglist.py >Xlib/root/ROOT/_pythonization/_roofit/_rooargset.py >Xlib/root/ROOT/_pythonization/_roofit/_roocategory.py >Xlib/root/ROOT/_pythonization/_roofit/_roochi2var.py >Xlib/root/ROOT/_pythonization/_roofit/_roodatahist.py >Xlib/root/ROOT/_pythonization/_roofit/_roodataset.py >Xlib/root/ROOT/_pythonization/_roofit/_roodecays.py >Xlib/root/ROOT/_pythonization/_roofit/_roogenfitstudy.py >Xlib/root/ROOT/_pythonization/_roofit/_rooglobalfunc.py >Xlib/root/ROOT/_pythonization/_roofit/_roojsonfactorywstool.py >Xlib/root/ROOT/_pythonization/_roofit/_roomcstudy.py >Xlib/root/ROOT/_pythonization/_roofit/_roomsgservice.py >Xlib/root/ROOT/_pythonization/_roofit/_roonllvar.py >Xlib/root/ROOT/_pythonization/_roofit/_rooprodpdf.py >Xlib/root/ROOT/_pythonization/_roofit/_roorealvar.py >Xlib/root/ROOT/_pythonization/_roofit/_roosimultaneous.py >Xlib/root/ROOT/_pythonization/_roofit/_roosimwstool.py >Xlib/root/ROOT/_pythonization/_roofit/_roovectordatastore.py >Xlib/root/ROOT/_pythonization/_roofit/_rooworkspace.py >Xlib/root/ROOT/_pythonization/_roofit/_utils.py >Xlib/root/ROOT/_pythonization/_rtensor.py >Xlib/root/ROOT/_pythonization/_rvec.py >Xlib/root/ROOT/_pythonization/_stl_vector.py >Xlib/root/ROOT/_pythonization/_tarray.py >Xlib/root/ROOT/_pythonization/_tclass.py >Xlib/root/ROOT/_pythonization/_tclonesarray.py >Xlib/root/ROOT/_pythonization/_tcollection.py >Xlib/root/ROOT/_pythonization/_tcomplex.py >Xlib/root/ROOT/_pythonization/_tdirectory.py >Xlib/root/ROOT/_pythonization/_tdirectoryfile.py >Xlib/root/ROOT/_pythonization/_tfile.py >Xlib/root/ROOT/_pythonization/_tgraph.py >Xlib/root/ROOT/_pythonization/_th1.py >Xlib/root/ROOT/_pythonization/_titer.py >Xlib/root/ROOT/_pythonization/_tobject.py >Xlib/root/ROOT/_pythonization/_tobjstring.py >Xlib/root/ROOT/_pythonization/_tree_inference.py >Xlib/root/ROOT/_pythonization/_tseqcollection.py >Xlib/root/ROOT/_pythonization/_tstring.py >Xlib/root/ROOT/_pythonization/_ttree.py >Xlib/root/ROOT/_pythonization/_tvector3.py >Xlib/root/ROOT/_pythonization/_tvectort.py >Xlib/root/ROOTDataFrame.pcm >Xlib/root/ROOTTMVASofie.pcm >Xlib/root/ROOTTPython.pcm >Xlib/root/ROOTVecOps.pcm >Xlib/root/ROOT_Config.pcm >Xlib/root/ROOT_Foundation_C.pcm >Xlib/root/ROOT_Foundation_Stage1_NoRTTI.pcm >Xlib/root/ROOT_Rtypes.pcm >Xlib/root/RSQLite.pcm >Xlib/root/Recorder.pcm >Xlib/root/Rint.pcm >Xlib/root/RooFit.pcm >Xlib/root/RooFitCore.pcm >Xlib/root/RooFitHS3.pcm >Xlib/root/RooFitMore.pcm >Xlib/root/RooFitRDataFrameHelpers.pcm >Xlib/root/RooStats.pcm >Xlib/root/RootAuth.pcm >Xlib/root/SPlot.pcm >Xlib/root/SQLIO.pcm >Xlib/root/SessionViewer.pcm >Xlib/root/Smatrix.pcm >Xlib/root/Spectrum.pcm >Xlib/root/SpectrumPainter.pcm >Xlib/root/TMVA.pcm >Xlib/root/TMVAGui.pcm >Xlib/root/Thread.pcm >Xlib/root/Tree.pcm >Xlib/root/TreePlayer.pcm >Xlib/root/TreeViewer.pcm >Xlib/root/Unfold.pcm >Xlib/root/X3d.pcm >Xlib/root/XMLIO.pcm >Xlib/root/XMLParser.pcm >Xlib/root/_Builtin_intrinsics.pcm >Xlib/root/_Builtin_stddef_max_align_t.pcm >Xlib/root/cmdLineUtils.py >Xlib/root/cppyy/__init__.py >Xlib/root/cppyy/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/__init__.cpython-39.pyc >Xlib/root/cppyy/__pycache__/_cpython_cppyy.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/_cpython_cppyy.cpython-39.pyc >Xlib/root/cppyy/__pycache__/_pypy_cppyy.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/_pypy_cppyy.cpython-39.pyc >Xlib/root/cppyy/__pycache__/_pythonization.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/_pythonization.cpython-39.pyc >Xlib/root/cppyy/__pycache__/_stdcpp_fix.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/_stdcpp_fix.cpython-39.pyc >Xlib/root/cppyy/__pycache__/_typemap.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/_typemap.cpython-39.pyc >Xlib/root/cppyy/__pycache__/_version.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/_version.cpython-39.pyc >Xlib/root/cppyy/__pycache__/interactive.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/interactive.cpython-39.pyc >Xlib/root/cppyy/__pycache__/ll.cpython-39.opt-1.pyc >Xlib/root/cppyy/__pycache__/ll.cpython-39.pyc >Xlib/root/cppyy/_cpython_cppyy.py >Xlib/root/cppyy/_pypy_cppyy.py >Xlib/root/cppyy/_pythonization.py >Xlib/root/cppyy/_stdcpp_fix.py >Xlib/root/cppyy/_typemap.py >Xlib/root/cppyy/_version.py >Xlib/root/cppyy/interactive.py >Xlib/root/cppyy/ll.py >Xlib/root/cppyy_backend/__init__.py >Xlib/root/cppyy_backend/__pycache__/__init__.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/__init__.cpython-39.pyc >Xlib/root/cppyy_backend/__pycache__/_cling_config.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/_cling_config.cpython-39.pyc >Xlib/root/cppyy_backend/__pycache__/_cppyy_generator.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/_cppyy_generator.cpython-39.pyc >Xlib/root/cppyy_backend/__pycache__/_genreflex.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/_genreflex.cpython-39.pyc >Xlib/root/cppyy_backend/__pycache__/_get_cppflags.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/_get_cppflags.cpython-39.pyc >Xlib/root/cppyy_backend/__pycache__/_rootcling.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/_rootcling.cpython-39.pyc >Xlib/root/cppyy_backend/__pycache__/bindings_utils.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/bindings_utils.cpython-39.pyc >Xlib/root/cppyy_backend/__pycache__/loader.cpython-39.opt-1.pyc >Xlib/root/cppyy_backend/__pycache__/loader.cpython-39.pyc >Xlib/root/cppyy_backend/_cling_config.py >Xlib/root/cppyy_backend/_cppyy_generator.py >Xlib/root/cppyy_backend/_genreflex.py >Xlib/root/cppyy_backend/_get_cppflags.py >Xlib/root/cppyy_backend/_rootcling.py >Xlib/root/cppyy_backend/bindings_utils.py >Xlib/root/cppyy_backend/loader.py >Xlib/root/libASImage.so >Xlib/root/libASImage.so.6.26 >Xlib/root/libASImage.so.6.26.06 >Xlib/root/libASImageGui.so >Xlib/root/libASImageGui.so.6.26 >Xlib/root/libASImageGui.so.6.26.06 >Xlib/root/libCling.so >Xlib/root/libCling.so.6.26 >Xlib/root/libCling.so.6.26.06 >Xlib/root/libCore.so >Xlib/root/libCore.so.6.26 >Xlib/root/libCore.so.6.26.06 >Xlib/root/libEG.so >Xlib/root/libEG.so.6.26 >Xlib/root/libEG.so.6.26.06 >Xlib/root/libEve.so >Xlib/root/libEve.so.6.26 >Xlib/root/libEve.so.6.26.06 >Xlib/root/libFFTW.so >Xlib/root/libFFTW.so.6.26 >Xlib/root/libFFTW.so.6.26.06 >Xlib/root/libFITSIO.so >Xlib/root/libFITSIO.so.6.26 >Xlib/root/libFITSIO.so.6.26.06 >Xlib/root/libFTGL.so >Xlib/root/libFTGL.so.6.26 >Xlib/root/libFTGL.so.6.26.06 >Xlib/root/libFitPanel.so >Xlib/root/libFitPanel.so.6.26 >Xlib/root/libFitPanel.so.6.26.06 >Xlib/root/libFoam.so >Xlib/root/libFoam.so.6.26 >Xlib/root/libFoam.so.6.26.06 >Xlib/root/libFumili.so >Xlib/root/libFumili.so.6.26 >Xlib/root/libFumili.so.6.26.06 >Xlib/root/libGX11.so >Xlib/root/libGX11.so.6.26 >Xlib/root/libGX11.so.6.26.06 >Xlib/root/libGX11TTF.so >Xlib/root/libGX11TTF.so.6.26 >Xlib/root/libGX11TTF.so.6.26.06 >Xlib/root/libGdml.so >Xlib/root/libGdml.so.6.26 >Xlib/root/libGdml.so.6.26.06 >Xlib/root/libGed.so >Xlib/root/libGed.so.6.26 >Xlib/root/libGed.so.6.26.06 >Xlib/root/libGenVector.so >Xlib/root/libGenVector.so.6.26 >Xlib/root/libGenVector.so.6.26.06 >Xlib/root/libGenVector32.rootmap >Xlib/root/libGenetic.so >Xlib/root/libGenetic.so.6.26 >Xlib/root/libGenetic.so.6.26.06 >Xlib/root/libGeom.so >Xlib/root/libGeom.so.6.26 >Xlib/root/libGeom.so.6.26.06 >Xlib/root/libGeomBuilder.so >Xlib/root/libGeomBuilder.so.6.26 >Xlib/root/libGeomBuilder.so.6.26.06 >Xlib/root/libGeomPainter.so >Xlib/root/libGeomPainter.so.6.26 >Xlib/root/libGeomPainter.so.6.26.06 >Xlib/root/libGpad.so >Xlib/root/libGpad.so.6.26 >Xlib/root/libGpad.so.6.26.06 >Xlib/root/libGraf.so >Xlib/root/libGraf.so.6.26 >Xlib/root/libGraf.so.6.26.06 >Xlib/root/libGraf3d.so >Xlib/root/libGraf3d.so.6.26 >Xlib/root/libGraf3d.so.6.26.06 >Xlib/root/libGui.so >Xlib/root/libGui.so.6.26 >Xlib/root/libGui.so.6.26.06 >Xlib/root/libGuiBld.so >Xlib/root/libGuiBld.so.6.26 >Xlib/root/libGuiBld.so.6.26.06 >Xlib/root/libGuiHtml.so >Xlib/root/libGuiHtml.so.6.26 >Xlib/root/libGuiHtml.so.6.26.06 >Xlib/root/libGviz3d.so >Xlib/root/libGviz3d.so.6.26 >Xlib/root/libGviz3d.so.6.26.06 >Xlib/root/libHist.so >Xlib/root/libHist.so.6.26 >Xlib/root/libHist.so.6.26.06 >Xlib/root/libHistFactory.so >Xlib/root/libHistFactory.so.6.26 >Xlib/root/libHistFactory.so.6.26.06 >Xlib/root/libHistPainter.so >Xlib/root/libHistPainter.so.6.26 >Xlib/root/libHistPainter.so.6.26.06 >Xlib/root/libHtml.so >Xlib/root/libHtml.so.6.26 >Xlib/root/libHtml.so.6.26.06 >Xlib/root/libImt.so >Xlib/root/libImt.so.6.26 >Xlib/root/libImt.so.6.26.06 >Xlib/root/libJupyROOT3_9.so >Xlib/root/libJupyROOT3_9.so.6.26 >Xlib/root/libJupyROOT3_9.so.6.26.06 >Xlib/root/libMLP.so >Xlib/root/libMLP.so.6.26 >Xlib/root/libMLP.so.6.26.06 >Xlib/root/libMathCore.so >Xlib/root/libMathCore.so.6.26 >Xlib/root/libMathCore.so.6.26.06 >Xlib/root/libMathMore.so >Xlib/root/libMathMore.so.6.26 >Xlib/root/libMathMore.so.6.26.06 >Xlib/root/libMatrix.so >Xlib/root/libMatrix.so.6.26 >Xlib/root/libMatrix.so.6.26.06 >Xlib/root/libMinuit.so >Xlib/root/libMinuit.so.6.26 >Xlib/root/libMinuit.so.6.26.06 >Xlib/root/libMinuit2.so >Xlib/root/libMinuit2.so.6.26 >Xlib/root/libMinuit2.so.6.26.06 >Xlib/root/libMultiProc.so >Xlib/root/libMultiProc.so.6.26 >Xlib/root/libMultiProc.so.6.26.06 >Xlib/root/libNet.so >Xlib/root/libNet.so.6.26 >Xlib/root/libNet.so.6.26.06 >Xlib/root/libNetx.so >Xlib/root/libNetx.so.6.26 >Xlib/root/libNetx.so.6.26.06 >Xlib/root/libNetxNG.so >Xlib/root/libNetxNG.so.6.26 >Xlib/root/libNetxNG.so.6.26.06 >Xlib/root/libNew.so >Xlib/root/libNew.so.6.26 >Xlib/root/libNew.so.6.26.06 >Xlib/root/libPgSQL.so >Xlib/root/libPgSQL.so.6.26 >Xlib/root/libPgSQL.so.6.26.06 >Xlib/root/libPhysics.so >Xlib/root/libPhysics.so.6.26 >Xlib/root/libPhysics.so.6.26.06 >Xlib/root/libPostscript.so >Xlib/root/libPostscript.so.6.26 >Xlib/root/libPostscript.so.6.26.06 >Xlib/root/libProof.so >Xlib/root/libProof.so.6.26 >Xlib/root/libProof.so.6.26.06 >Xlib/root/libProofBench.so >Xlib/root/libProofBench.so.6.26 >Xlib/root/libProofBench.so.6.26.06 >Xlib/root/libProofDraw.so >Xlib/root/libProofDraw.so.6.26 >Xlib/root/libProofDraw.so.6.26.06 >Xlib/root/libProofPlayer.so >Xlib/root/libProofPlayer.so.6.26 >Xlib/root/libProofPlayer.so.6.26.06 >Xlib/root/libPyMVA.so >Xlib/root/libPyMVA.so.6.26 >Xlib/root/libPyMVA.so.6.26.06 >Xlib/root/libQuadp.so >Xlib/root/libQuadp.so.6.26 >Xlib/root/libQuadp.so.6.26.06 >Xlib/root/libRCsg.so >Xlib/root/libRCsg.so.6.26 >Xlib/root/libRCsg.so.6.26.06 >Xlib/root/libRGL.so >Xlib/root/libRGL.so.6.26 >Xlib/root/libRGL.so.6.26.06 >Xlib/root/libRHTTP.so >Xlib/root/libRHTTP.so.6.26 >Xlib/root/libRHTTP.so.6.26.06 >Xlib/root/libRHTTPSniff.so >Xlib/root/libRHTTPSniff.so.6.26 >Xlib/root/libRHTTPSniff.so.6.26.06 >Xlib/root/libRIO.so >Xlib/root/libRIO.so.6.26 >Xlib/root/libRIO.so.6.26.06 >Xlib/root/libRMySQL.so >Xlib/root/libRMySQL.so.6.26 >Xlib/root/libRMySQL.so.6.26.06 >Xlib/root/libROOTDataFrame.so >Xlib/root/libROOTDataFrame.so.6.26 >Xlib/root/libROOTDataFrame.so.6.26.06 >Xlib/root/libROOTPythonizations3_9.so >Xlib/root/libROOTPythonizations3_9.so.6.26 >Xlib/root/libROOTPythonizations3_9.so.6.26.06 >Xlib/root/libROOTTMVASofie.so >Xlib/root/libROOTTMVASofie.so.6.26 >Xlib/root/libROOTTMVASofie.so.6.26.06 >Xlib/root/libROOTTPython.so >Xlib/root/libROOTTPython.so.6.26 >Xlib/root/libROOTTPython.so.6.26.06 >Xlib/root/libROOTVecOps.so >Xlib/root/libROOTVecOps.so.6.26 >Xlib/root/libROOTVecOps.so.6.26.06 >Xlib/root/libRSQLite.so >Xlib/root/libRSQLite.so.6.26 >Xlib/root/libRSQLite.so.6.26.06 >Xlib/root/libRecorder.so >Xlib/root/libRecorder.so.6.26 >Xlib/root/libRecorder.so.6.26.06 >Xlib/root/libRint.so >Xlib/root/libRint.so.6.26 >Xlib/root/libRint.so.6.26.06 >Xlib/root/libRooBatchCompute.so >Xlib/root/libRooBatchCompute.so.6.26 >Xlib/root/libRooBatchCompute.so.6.26.06 >Xlib/root/libRooBatchCompute_GENERIC.so >Xlib/root/libRooBatchCompute_GENERIC.so.6.26 >Xlib/root/libRooBatchCompute_GENERIC.so.6.26.06 >Xlib/root/libRooFit.so >Xlib/root/libRooFit.so.6.26 >Xlib/root/libRooFit.so.6.26.06 >Xlib/root/libRooFitCommon.so >Xlib/root/libRooFitCommon.so.6.26 >Xlib/root/libRooFitCommon.so.6.26.06 >Xlib/root/libRooFitCore.so >Xlib/root/libRooFitCore.so.6.26 >Xlib/root/libRooFitCore.so.6.26.06 >Xlib/root/libRooFitHS3.so >Xlib/root/libRooFitHS3.so.6.26 >Xlib/root/libRooFitHS3.so.6.26.06 >Xlib/root/libRooFitMore.so >Xlib/root/libRooFitMore.so.6.26 >Xlib/root/libRooFitMore.so.6.26.06 >Xlib/root/libRooFitRDataFrameHelpers.so >Xlib/root/libRooFitRDataFrameHelpers.so.6.26 >Xlib/root/libRooFitRDataFrameHelpers.so.6.26.06 >Xlib/root/libRooStats.so >Xlib/root/libRooStats.so.6.26 >Xlib/root/libRooStats.so.6.26.06 >Xlib/root/libRootAuth.so >Xlib/root/libRootAuth.so.6.26 >Xlib/root/libRootAuth.so.6.26.06 >Xlib/root/libSPlot.so >Xlib/root/libSPlot.so.6.26 >Xlib/root/libSPlot.so.6.26.06 >Xlib/root/libSQLIO.so >Xlib/root/libSQLIO.so.6.26 >Xlib/root/libSQLIO.so.6.26.06 >Xlib/root/libSessionViewer.so >Xlib/root/libSessionViewer.so.6.26 >Xlib/root/libSessionViewer.so.6.26.06 >Xlib/root/libSmatrix.so >Xlib/root/libSmatrix.so.6.26 >Xlib/root/libSmatrix.so.6.26.06 >Xlib/root/libSmatrix32.rootmap >Xlib/root/libSpectrum.so >Xlib/root/libSpectrum.so.6.26 >Xlib/root/libSpectrum.so.6.26.06 >Xlib/root/libSpectrumPainter.so >Xlib/root/libSpectrumPainter.so.6.26 >Xlib/root/libSpectrumPainter.so.6.26.06 >Xlib/root/libSrvAuth.so >Xlib/root/libSrvAuth.so.6.26 >Xlib/root/libSrvAuth.so.6.26.06 >Xlib/root/libTMVA.so >Xlib/root/libTMVA.so.6.26 >Xlib/root/libTMVA.so.6.26.06 >Xlib/root/libTMVAGui.so >Xlib/root/libTMVAGui.so.6.26 >Xlib/root/libTMVAGui.so.6.26.06 >Xlib/root/libThread.so >Xlib/root/libThread.so.6.26 >Xlib/root/libThread.so.6.26.06 >Xlib/root/libTree.so >Xlib/root/libTree.so.6.26 >Xlib/root/libTree.so.6.26.06 >Xlib/root/libTreePlayer.so >Xlib/root/libTreePlayer.so.6.26 >Xlib/root/libTreePlayer.so.6.26.06 >Xlib/root/libTreeViewer.so >Xlib/root/libTreeViewer.so.6.26 >Xlib/root/libTreeViewer.so.6.26.06 >Xlib/root/libUnfold.so >Xlib/root/libUnfold.so.6.26 >Xlib/root/libUnfold.so.6.26.06 >Xlib/root/libX3d.so >Xlib/root/libX3d.so.6.26 >Xlib/root/libX3d.so.6.26.06 >Xlib/root/libXMLIO.so >Xlib/root/libXMLIO.so.6.26 >Xlib/root/libXMLIO.so.6.26.06 >Xlib/root/libXMLParser.so >Xlib/root/libXMLParser.so.6.26 >Xlib/root/libXMLParser.so.6.26.06 >Xlib/root/libc.pcm >Xlib/root/libcomplexDict.rootmap >Xlib/root/libcomplexDict.so >Xlib/root/libcomplexDict.so.6.26 >Xlib/root/libcomplexDict.so.6.26.06 >Xlib/root/libcppyy3_9.so >Xlib/root/libcppyy3_9.so.6.26 >Xlib/root/libcppyy3_9.so.6.26.06 >Xlib/root/libcppyy_backend3_9.so >Xlib/root/libcppyy_backend3_9.so.6.26 >Xlib/root/libcppyy_backend3_9.so.6.26.06 >Xlib/root/libdequeDict.rootmap >Xlib/root/libdequeDict.so >Xlib/root/libdequeDict.so.6.26 >Xlib/root/libdequeDict.so.6.26.06 >Xlib/root/libforward_listDict.rootmap >Xlib/root/libforward_listDict.so >Xlib/root/libforward_listDict.so.6.26 >Xlib/root/libforward_listDict.so.6.26.06 >Xlib/root/liblistDict.rootmap >Xlib/root/liblistDict.so >Xlib/root/liblistDict.so.6.26 >Xlib/root/liblistDict.so.6.26.06 >Xlib/root/libmap2Dict.rootmap >Xlib/root/libmap2Dict.so >Xlib/root/libmap2Dict.so.6.26 >Xlib/root/libmap2Dict.so.6.26.06 >Xlib/root/libmapDict.rootmap >Xlib/root/libmapDict.so >Xlib/root/libmapDict.so.6.26 >Xlib/root/libmapDict.so.6.26.06 >Xlib/root/libmultimap2Dict.rootmap >Xlib/root/libmultimap2Dict.so >Xlib/root/libmultimap2Dict.so.6.26 >Xlib/root/libmultimap2Dict.so.6.26.06 >Xlib/root/libmultimapDict.rootmap >Xlib/root/libmultimapDict.so >Xlib/root/libmultimapDict.so.6.26 >Xlib/root/libmultimapDict.so.6.26.06 >Xlib/root/libmultisetDict.rootmap >Xlib/root/libmultisetDict.so >Xlib/root/libmultisetDict.so.6.26 >Xlib/root/libmultisetDict.so.6.26.06 >Xlib/root/libsetDict.rootmap >Xlib/root/libsetDict.so >Xlib/root/libsetDict.so.6.26 >Xlib/root/libsetDict.so.6.26.06 >Xlib/root/libunordered_mapDict.rootmap >Xlib/root/libunordered_mapDict.so >Xlib/root/libunordered_mapDict.so.6.26 >Xlib/root/libunordered_mapDict.so.6.26.06 >Xlib/root/libunordered_multimapDict.rootmap >Xlib/root/libunordered_multimapDict.so >Xlib/root/libunordered_multimapDict.so.6.26 >Xlib/root/libunordered_multimapDict.so.6.26.06 >Xlib/root/libunordered_multisetDict.rootmap >Xlib/root/libunordered_multisetDict.so >Xlib/root/libunordered_multisetDict.so.6.26 >Xlib/root/libunordered_multisetDict.so.6.26.06 >Xlib/root/libunordered_setDict.rootmap >Xlib/root/libunordered_setDict.so >Xlib/root/libunordered_setDict.so.6.26 >Xlib/root/libunordered_setDict.so.6.26.06 >Xlib/root/libvalarrayDict.rootmap >Xlib/root/libvalarrayDict.so >Xlib/root/libvalarrayDict.so.6.26 >Xlib/root/libvalarrayDict.so.6.26.06 >Xlib/root/libvectorDict.rootmap >Xlib/root/libvectorDict.so >Xlib/root/libvectorDict.so.6.26 >Xlib/root/libvectorDict.so.6.26.06 >Xlib/root/modules.idx >Xlib/root/std.pcm >Xlib/root/std_config.pcm >Xshare/doc/root/CREDITS >Xshare/doc/root/DEVELOPMENT.md >Xshare/doc/root/INSTALL >Xshare/doc/root/LICENSE >Xshare/doc/root/README.ALIEN >Xshare/doc/root/README.AUTH >Xshare/doc/root/README.CXXMODULES.md >Xshare/doc/root/README.MONALISA >Xshare/doc/root/README.SELECTOR >Xshare/doc/root/ReleaseNotes/empty.md >Xshare/doc/root/ReleaseNotes/old/ChangeLog-2-24 >Xshare/doc/root/ReleaseNotes/v604/colz0.png >Xshare/doc/root/ReleaseNotes/v604/index.md >Xshare/doc/root/ReleaseNotes/v604/nostackb.png >Xshare/doc/root/ReleaseNotes/v604/palette_100.png >Xshare/doc/root/ReleaseNotes/v604/palette_101.png >Xshare/doc/root/ReleaseNotes/v604/palette_102.png >Xshare/doc/root/ReleaseNotes/v604/palette_103.png >Xshare/doc/root/ReleaseNotes/v604/palette_104.png >Xshare/doc/root/ReleaseNotes/v604/palette_105.png >Xshare/doc/root/ReleaseNotes/v604/palette_106.png >Xshare/doc/root/ReleaseNotes/v604/palette_107.png >Xshare/doc/root/ReleaseNotes/v604/palette_108.png >Xshare/doc/root/ReleaseNotes/v604/palette_109.png >Xshare/doc/root/ReleaseNotes/v604/palette_110.png >Xshare/doc/root/ReleaseNotes/v604/palette_111.png >Xshare/doc/root/ReleaseNotes/v604/palette_51.png >Xshare/doc/root/ReleaseNotes/v604/palette_52.png >Xshare/doc/root/ReleaseNotes/v604/palette_53.png >Xshare/doc/root/ReleaseNotes/v604/palette_54.png >Xshare/doc/root/ReleaseNotes/v604/palette_55.png >Xshare/doc/root/ReleaseNotes/v604/palette_56.png >Xshare/doc/root/ReleaseNotes/v604/palette_57.png >Xshare/doc/root/ReleaseNotes/v604/palette_58.png >Xshare/doc/root/ReleaseNotes/v604/palette_59.png >Xshare/doc/root/ReleaseNotes/v604/palette_60.png >Xshare/doc/root/ReleaseNotes/v604/palette_61.png >Xshare/doc/root/ReleaseNotes/v604/palette_62.png >Xshare/doc/root/ReleaseNotes/v604/palette_63.png >Xshare/doc/root/ReleaseNotes/v604/palette_64.png >Xshare/doc/root/ReleaseNotes/v604/palette_65.png >Xshare/doc/root/ReleaseNotes/v604/palette_66.png >Xshare/doc/root/ReleaseNotes/v604/palette_67.png >Xshare/doc/root/ReleaseNotes/v604/palette_68.png >Xshare/doc/root/ReleaseNotes/v604/palette_69.png >Xshare/doc/root/ReleaseNotes/v604/palette_70.png >Xshare/doc/root/ReleaseNotes/v604/palette_71.png >Xshare/doc/root/ReleaseNotes/v604/palette_72.png >Xshare/doc/root/ReleaseNotes/v604/palette_73.png >Xshare/doc/root/ReleaseNotes/v604/palette_74.png >Xshare/doc/root/ReleaseNotes/v604/palette_75.png >Xshare/doc/root/ReleaseNotes/v604/palette_76.png >Xshare/doc/root/ReleaseNotes/v604/palette_77.png >Xshare/doc/root/ReleaseNotes/v604/palette_78.png >Xshare/doc/root/ReleaseNotes/v604/palette_79.png >Xshare/doc/root/ReleaseNotes/v604/palette_80.png >Xshare/doc/root/ReleaseNotes/v604/palette_81.png >Xshare/doc/root/ReleaseNotes/v604/palette_82.png >Xshare/doc/root/ReleaseNotes/v604/palette_83.png >Xshare/doc/root/ReleaseNotes/v604/palette_84.png >Xshare/doc/root/ReleaseNotes/v604/palette_85.png >Xshare/doc/root/ReleaseNotes/v604/palette_86.png >Xshare/doc/root/ReleaseNotes/v604/palette_87.png >Xshare/doc/root/ReleaseNotes/v604/palette_88.png >Xshare/doc/root/ReleaseNotes/v604/palette_89.png >Xshare/doc/root/ReleaseNotes/v604/palette_90.png >Xshare/doc/root/ReleaseNotes/v604/palette_91.png >Xshare/doc/root/ReleaseNotes/v604/palette_92.png >Xshare/doc/root/ReleaseNotes/v604/palette_93.png >Xshare/doc/root/ReleaseNotes/v604/palette_94.png >Xshare/doc/root/ReleaseNotes/v604/palette_95.png >Xshare/doc/root/ReleaseNotes/v604/palette_96.png >Xshare/doc/root/ReleaseNotes/v604/palette_97.png >Xshare/doc/root/ReleaseNotes/v604/palette_98.png >Xshare/doc/root/ReleaseNotes/v604/palette_99.png >Xshare/doc/root/ReleaseNotes/v606/index.md >Xshare/doc/root/ReleaseNotes/v606/palette_112.png >Xshare/doc/root/ReleaseNotes/v606/ttree_makeselector_option_examples.png >Xshare/doc/root/ReleaseNotes/v608/index.md >Xshare/doc/root/ReleaseNotes/v610/NewBoxOption.png >Xshare/doc/root/ReleaseNotes/v610/NewMarkers.png >Xshare/doc/root/ReleaseNotes/v610/ReverseAxis.png >Xshare/doc/root/ReleaseNotes/v610/index.md >Xshare/doc/root/ReleaseNotes/v612/index.md >Xshare/doc/root/ReleaseNotes/v614/index.md >Xshare/doc/root/ReleaseNotes/v616/index.md >Xshare/doc/root/ReleaseNotes/v618/index.md >Xshare/doc/root/ReleaseNotes/v620/index.md >Xshare/doc/root/ReleaseNotes/v622/index.md >Xshare/doc/root/ReleaseNotes/v624/index.md >Xshare/doc/root/ReleaseNotes/v626/index.md >Xshare/doc/root/cfortran.doc >Xshare/doc/root/tutorials/CMakeLists.txt >Xshare/doc/root/tutorials/CTestCustom.cmake >Xshare/doc/root/tutorials/cocoa/customcolor.h >Xshare/doc/root/tutorials/cocoa/flower.C >Xshare/doc/root/tutorials/cocoa/grad.C >Xshare/doc/root/tutorials/cocoa/grad2.C >Xshare/doc/root/tutorials/cocoa/gradients.C >Xshare/doc/root/tutorials/cocoa/index.md >Xshare/doc/root/tutorials/cocoa/parallelcoordtrans.C >Xshare/doc/root/tutorials/cocoa/radialgradients.C >Xshare/doc/root/tutorials/cocoa/transp.C >Xshare/doc/root/tutorials/cocoa/transp_text.C >Xshare/doc/root/tutorials/cocoa/transparentpad.C >Xshare/doc/root/tutorials/cont/cnt001_basictseq.C >Xshare/doc/root/tutorials/dataframe/df000_simple.C >Xshare/doc/root/tutorials/dataframe/df000_simple.py >Xshare/doc/root/tutorials/dataframe/df001_introduction.C >Xshare/doc/root/tutorials/dataframe/df001_introduction.py >Xshare/doc/root/tutorials/dataframe/df002_dataModel.C >Xshare/doc/root/tutorials/dataframe/df002_dataModel.py >Xshare/doc/root/tutorials/dataframe/df003_profiles.C >Xshare/doc/root/tutorials/dataframe/df003_profiles.py >Xshare/doc/root/tutorials/dataframe/df004_cutFlowReport.C >Xshare/doc/root/tutorials/dataframe/df004_cutFlowReport.py >Xshare/doc/root/tutorials/dataframe/df005_fillAnyObject.C >Xshare/doc/root/tutorials/dataframe/df006_ranges.C >Xshare/doc/root/tutorials/dataframe/df006_ranges.py >Xshare/doc/root/tutorials/dataframe/df007_snapshot.C >Xshare/doc/root/tutorials/dataframe/df007_snapshot.py >Xshare/doc/root/tutorials/dataframe/df008_createDataSetFromScratch.C >Xshare/doc/root/tutorials/dataframe/df008_createDataSetFromScratch.py >Xshare/doc/root/tutorials/dataframe/df009_FromScratchVSTTree.C >Xshare/doc/root/tutorials/dataframe/df010_trivialDataSource.C >Xshare/doc/root/tutorials/dataframe/df010_trivialDataSource.py >Xshare/doc/root/tutorials/dataframe/df012_DefinesAndFiltersAsStrings.C >Xshare/doc/root/tutorials/dataframe/df012_DefinesAndFiltersAsStrings.py >Xshare/doc/root/tutorials/dataframe/df013_InspectAnalysis.C >Xshare/doc/root/tutorials/dataframe/df014_CSVDataSource.C >Xshare/doc/root/tutorials/dataframe/df014_CSVDataSource.py >Xshare/doc/root/tutorials/dataframe/df015_LazyDataSource.C >Xshare/doc/root/tutorials/dataframe/df016_vecOps.C >Xshare/doc/root/tutorials/dataframe/df016_vecOps.py >Xshare/doc/root/tutorials/dataframe/df017_vecOpsHEP.C >Xshare/doc/root/tutorials/dataframe/df017_vecOpsHEP.py >Xshare/doc/root/tutorials/dataframe/df017_vecOpsHEP.root >Xshare/doc/root/tutorials/dataframe/df018_customActions.C >Xshare/doc/root/tutorials/dataframe/df019_Cache.C >Xshare/doc/root/tutorials/dataframe/df019_Cache.py >Xshare/doc/root/tutorials/dataframe/df020_helpers.C >Xshare/doc/root/tutorials/dataframe/df021_createTGraph.C >Xshare/doc/root/tutorials/dataframe/df021_createTGraph.py >Xshare/doc/root/tutorials/dataframe/df022_useKahan.C >Xshare/doc/root/tutorials/dataframe/df023_aggregate.C >Xshare/doc/root/tutorials/dataframe/df024_Display.C >Xshare/doc/root/tutorials/dataframe/df024_Display.py >Xshare/doc/root/tutorials/dataframe/df025_RNode.C >Xshare/doc/root/tutorials/dataframe/df026_AsNumpyArrays.py >Xshare/doc/root/tutorials/dataframe/df027_SQliteDependencyOverVersion.C >Xshare/doc/root/tutorials/dataframe/df028_SQliteIPLocation.C >Xshare/doc/root/tutorials/dataframe/df029_SQlitePlatformDistribution.C >Xshare/doc/root/tutorials/dataframe/df030_SQliteVersionsOfROOT.C >Xshare/doc/root/tutorials/dataframe/df031_Stats.C >Xshare/doc/root/tutorials/dataframe/df031_Stats.py >Xshare/doc/root/tutorials/dataframe/df032_MakeNumpyDataFrame.py >Xshare/doc/root/tutorials/dataframe/df033_Describe.py >Xshare/doc/root/tutorials/dataframe/df101_h1Analysis.C >Xshare/doc/root/tutorials/dataframe/df102_NanoAODDimuonAnalysis.C >Xshare/doc/root/tutorials/dataframe/df102_NanoAODDimuonAnalysis.py >Xshare/doc/root/tutorials/dataframe/df103_NanoAODHiggsAnalysis.C >Xshare/doc/root/tutorials/dataframe/df103_NanoAODHiggsAnalysis.py >Xshare/doc/root/tutorials/dataframe/df103_NanoAODHiggsAnalysis_python.h >Xshare/doc/root/tutorials/dataframe/df104_HiggsToTwoPhotons.py >Xshare/doc/root/tutorials/dataframe/df105_WBosonAnalysis.json >Xshare/doc/root/tutorials/dataframe/df105_WBosonAnalysis.py >Xshare/doc/root/tutorials/dataframe/df106_HiggsToFourLeptons.json >Xshare/doc/root/tutorials/dataframe/df106_HiggsToFourLeptons.py >Xshare/doc/root/tutorials/dataframe/df107_SingleTopAnalysis.json >Xshare/doc/root/tutorials/dataframe/df107_SingleTopAnalysis.py >Xshare/doc/root/tutorials/dataframe/distrdf001_spark_connection.py >Xshare/doc/root/tutorials/dataframe/distrdf002_dask_connection.py >Xshare/doc/root/tutorials/dataframe/index.md >Xshare/doc/root/tutorials/demos.C >Xshare/doc/root/tutorials/demoshelp.C >Xshare/doc/root/tutorials/doc/v528/index.html >Xshare/doc/root/tutorials/doc/v528/mass_spectrum.gif >Xshare/doc/root/tutorials/doc/v530/index.html >Xshare/doc/root/tutorials/doc/v532/index.html >Xshare/doc/root/tutorials/doc/v534/index.html >Xshare/doc/root/tutorials/doc/v600/index.md >Xshare/doc/root/tutorials/doc/v602/index.md >Xshare/doc/root/tutorials/eve/Default.png >Xshare/doc/root/tutorials/eve/MultiView.C >Xshare/doc/root/tutorials/eve/SplitGLView.C >Xshare/doc/root/tutorials/eve/alice_esd.C >Xshare/doc/root/tutorials/eve/alice_esd_html_summary.C >Xshare/doc/root/tutorials/eve/alice_esd_split.C >Xshare/doc/root/tutorials/eve/alice_vsd.C >Xshare/doc/root/tutorials/eve/annotation.C >Xshare/doc/root/tutorials/eve/arrow.C >Xshare/doc/root/tutorials/eve/arrow_standalone.C >Xshare/doc/root/tutorials/eve/assembly.C >Xshare/doc/root/tutorials/eve/box.C >Xshare/doc/root/tutorials/eve/boxset.C >Xshare/doc/root/tutorials/eve/boxset_cones.C >Xshare/doc/root/tutorials/eve/broken_torus.tring >Xshare/doc/root/tutorials/eve/calo_detail.C >Xshare/doc/root/tutorials/eve/calorimeters.C >Xshare/doc/root/tutorials/eve/camera_restore.C >Xshare/doc/root/tutorials/eve/compound.C >Xshare/doc/root/tutorials/eve/csgdemo.C >Xshare/doc/root/tutorials/eve/geom_alias.C >Xshare/doc/root/tutorials/eve/geom_alice_its.C >Xshare/doc/root/tutorials/eve/geom_alice_tpc.C >Xshare/doc/root/tutorials/eve/geom_atlas.C >Xshare/doc/root/tutorials/eve/geom_atlas_playback.C >Xshare/doc/root/tutorials/eve/geom_cms.C >Xshare/doc/root/tutorials/eve/geom_cms_playback.C >Xshare/doc/root/tutorials/eve/geom_cms_stereo.C >Xshare/doc/root/tutorials/eve/geom_default.C >Xshare/doc/root/tutorials/eve/geom_lhcb.C >Xshare/doc/root/tutorials/eve/glplot.C >Xshare/doc/root/tutorials/eve/glplot_geom.C >Xshare/doc/root/tutorials/eve/hierarchical_scene.C >Xshare/doc/root/tutorials/eve/histobrowser.C >Xshare/doc/root/tutorials/eve/jetcone.C >Xshare/doc/root/tutorials/eve/lineset.C >Xshare/doc/root/tutorials/eve/lineset.py >Xshare/doc/root/tutorials/eve/nasashuttle.3ds >Xshare/doc/root/tutorials/eve/overlay_palette.C >Xshare/doc/root/tutorials/eve/pack.C >Xshare/doc/root/tutorials/eve/paramlist.C >Xshare/doc/root/tutorials/eve/pointset.C >Xshare/doc/root/tutorials/eve/projection.C >Xshare/doc/root/tutorials/eve/projection_prescale.C >Xshare/doc/root/tutorials/eve/pythia_display.C >Xshare/doc/root/tutorials/eve/quadset.C >Xshare/doc/root/tutorials/eve/run_alice_esd.C >Xshare/doc/root/tutorials/eve/run_alice_esd_split.C >Xshare/doc/root/tutorials/eve/selection_sigs.C >Xshare/doc/root/tutorials/eve/show_extract.C >Xshare/doc/root/tutorials/eve/swap.png >Xshare/doc/root/tutorials/eve/text.C >Xshare/doc/root/tutorials/eve/track.C >Xshare/doc/root/tutorials/eve/triangleset.C >Xshare/doc/root/tutorials/eve/view3ds.C >Xshare/doc/root/tutorials/eve/window_manager.C >Xshare/doc/root/tutorials/eve7/box.C >Xshare/doc/root/tutorials/eve7/boxset.C >Xshare/doc/root/tutorials/eve7/calorimeters.C >Xshare/doc/root/tutorials/eve7/collection_proxies.C >Xshare/doc/root/tutorials/eve7/compound.C >Xshare/doc/root/tutorials/eve7/csgdemo.C >Xshare/doc/root/tutorials/eve7/error_ellipse.C >Xshare/doc/root/tutorials/eve7/event_demo.C >Xshare/doc/root/tutorials/eve7/geom_cms.C >Xshare/doc/root/tutorials/eve7/jets.C >Xshare/doc/root/tutorials/eve7/lego.C >Xshare/doc/root/tutorials/eve7/lineset.C >Xshare/doc/root/tutorials/eve7/points.C >Xshare/doc/root/tutorials/eve7/projection_prescale.C >Xshare/doc/root/tutorials/eve7/show_extract.C >Xshare/doc/root/tutorials/eve7/tracks.C >Xshare/doc/root/tutorials/eve7/viewer.C >Xshare/doc/root/tutorials/fft/FFT.C >Xshare/doc/root/tutorials/fit/ConfidenceIntervals.C >Xshare/doc/root/tutorials/fit/ErrorIntegral.C >Xshare/doc/root/tutorials/fit/FitHistoInFile.C >Xshare/doc/root/tutorials/fit/FittingDemo.C >Xshare/doc/root/tutorials/fit/Ifit.C >Xshare/doc/root/tutorials/fit/NumericalMinimization.C >Xshare/doc/root/tutorials/fit/TestBinomial.C >Xshare/doc/root/tutorials/fit/TwoHistoFit2D.C >Xshare/doc/root/tutorials/fit/combinedFit.C >Xshare/doc/root/tutorials/fit/exampleFit3D.C >Xshare/doc/root/tutorials/fit/fit1.C >Xshare/doc/root/tutorials/fit/fit1_C.txt >Xshare/doc/root/tutorials/fit/fit2.C >Xshare/doc/root/tutorials/fit/fit2a.C >Xshare/doc/root/tutorials/fit/fit2d.C >Xshare/doc/root/tutorials/fit/fit2dHist.C >Xshare/doc/root/tutorials/fit/fitCircle.C >Xshare/doc/root/tutorials/fit/fitConvolution.C >Xshare/doc/root/tutorials/fit/fitEllipseTGraphDLSF.cxx >Xshare/doc/root/tutorials/fit/fitEllipseTGraphRMM.cxx >Xshare/doc/root/tutorials/fit/fitExclude.C >Xshare/doc/root/tutorials/fit/fitLinear.C >Xshare/doc/root/tutorials/fit/fitLinear2.C >Xshare/doc/root/tutorials/fit/fitLinearRobust.C >Xshare/doc/root/tutorials/fit/fitMultiGraph.C >Xshare/doc/root/tutorials/fit/fitNormSum.C >Xshare/doc/root/tutorials/fit/fitcont.C >Xshare/doc/root/tutorials/fit/fithist.C >Xshare/doc/root/tutorials/fit/fitpanel_playback.C >Xshare/doc/root/tutorials/fit/fitslicesy.C >Xshare/doc/root/tutorials/fit/graph2dfit.C >Xshare/doc/root/tutorials/fit/langaus.C >Xshare/doc/root/tutorials/fit/line3Dfit.C >Xshare/doc/root/tutorials/fit/minuit2FitBench.C >Xshare/doc/root/tutorials/fit/minuit2FitBench2D.C >Xshare/doc/root/tutorials/fit/minuit2GausFit.C >Xshare/doc/root/tutorials/fit/multidimfit.C >Xshare/doc/root/tutorials/fit/multifit.C >Xshare/doc/root/tutorials/fit/myfit.C >Xshare/doc/root/tutorials/fit/qa2.C >Xshare/doc/root/tutorials/fit/vectorizedFit.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial1.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial2.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial3.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial4.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial5.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial6.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial7.C >Xshare/doc/root/tutorials/fitsio/FITS_tutorial8.C >Xshare/doc/root/tutorials/fitsio/rmf.fits >Xshare/doc/root/tutorials/fitsio/sample1.fits >Xshare/doc/root/tutorials/fitsio/sample2.fits >Xshare/doc/root/tutorials/fitsio/sample3.fits >Xshare/doc/root/tutorials/fitsio/sample4.fits >Xshare/doc/root/tutorials/fitsio/sample5.fits >Xshare/doc/root/tutorials/foam/foam_demo.C >Xshare/doc/root/tutorials/foam/foam_demopers.C >Xshare/doc/root/tutorials/foam/foam_kanwa.C >Xshare/doc/root/tutorials/foam/index.md >Xshare/doc/root/tutorials/gallery.root >Xshare/doc/root/tutorials/geom/RadioNuclides.C >Xshare/doc/root/tutorials/geom/assembly.C >Xshare/doc/root/tutorials/geom/building.C >Xshare/doc/root/tutorials/geom/cheongwadae.C >Xshare/doc/root/tutorials/geom/csgdemo.C >Xshare/doc/root/tutorials/geom/gdml/opticalsurfaces.gdml >Xshare/doc/root/tutorials/geom/gdml/testoptical.C >Xshare/doc/root/tutorials/geom/geodemo.C >Xshare/doc/root/tutorials/geom/geomAlice.C >Xshare/doc/root/tutorials/geom/geomAlice_itsv.C >Xshare/doc/root/tutorials/geom/geomAtlas.C >Xshare/doc/root/tutorials/geom/geomBrahms.C >Xshare/doc/root/tutorials/geom/geomD0.C >Xshare/doc/root/tutorials/geom/geometry.C >Xshare/doc/root/tutorials/geom/iterplugin.cxx >Xshare/doc/root/tutorials/geom/lego.C >Xshare/doc/root/tutorials/geom/mp3player.C >Xshare/doc/root/tutorials/geom/na49.C >Xshare/doc/root/tutorials/geom/na49geomfile.C >Xshare/doc/root/tutorials/geom/na49view.C >Xshare/doc/root/tutorials/geom/parallel_world.C >Xshare/doc/root/tutorials/geom/robot.C >Xshare/doc/root/tutorials/geom/rootgeom.C >Xshare/doc/root/tutorials/geom/runplugin.C >Xshare/doc/root/tutorials/geom/shapes.C >Xshare/doc/root/tutorials/geom/shapesAnim.C >Xshare/doc/root/tutorials/geom/south_gate.C >Xshare/doc/root/tutorials/geom/station1.C >Xshare/doc/root/tutorials/geom/station2.C >Xshare/doc/root/tutorials/geom/tank.C >Xshare/doc/root/tutorials/geom/teddy.obj >Xshare/doc/root/tutorials/geom/visualizeWavefrontObj.C >Xshare/doc/root/tutorials/geom/webdemo.C >Xshare/doc/root/tutorials/geom/webdemo.html >Xshare/doc/root/tutorials/geom/webhelp.html >Xshare/doc/root/tutorials/geom/xtruDraw.C >Xshare/doc/root/tutorials/geom/xtruSamples.C >Xshare/doc/root/tutorials/gl/customcolorgl.h >Xshare/doc/root/tutorials/gl/glViewerExercise.C >Xshare/doc/root/tutorials/gl/glViewerLOD.C >Xshare/doc/root/tutorials/gl/glbox.C >Xshare/doc/root/tutorials/gl/gldemos.C >Xshare/doc/root/tutorials/gl/glh3c.C >Xshare/doc/root/tutorials/gl/glparametric.C >Xshare/doc/root/tutorials/gl/glparametrics2.C >Xshare/doc/root/tutorials/gl/glrose.C >Xshare/doc/root/tutorials/gl/glsurfaces.C >Xshare/doc/root/tutorials/gl/gltf3.C >Xshare/doc/root/tutorials/gl/glvox1.C >Xshare/doc/root/tutorials/gl/glvox2.C >Xshare/doc/root/tutorials/gl/grad.C >Xshare/doc/root/tutorials/gl/grad2.C >Xshare/doc/root/tutorials/gl/gradients.C >Xshare/doc/root/tutorials/gl/gviz3d.C >Xshare/doc/root/tutorials/gl/nucleus.C >Xshare/doc/root/tutorials/gl/parallelcoordtrans.C >Xshare/doc/root/tutorials/gl/radialgradients.C >Xshare/doc/root/tutorials/gl/transp.C >Xshare/doc/root/tutorials/gl/transp_text.C >Xshare/doc/root/tutorials/gl/transparentpad.C >Xshare/doc/root/tutorials/gl/viewer3DLocal.C >Xshare/doc/root/tutorials/gl/viewer3DMaster.C >Xshare/doc/root/tutorials/graphics/AtlasExample.C >Xshare/doc/root/tutorials/graphics/analyze.C >Xshare/doc/root/tutorials/graphics/anim.C >Xshare/doc/root/tutorials/graphics/archi.C >Xshare/doc/root/tutorials/graphics/arrows.C >Xshare/doc/root/tutorials/graphics/basic3d.C >Xshare/doc/root/tutorials/graphics/canvas.C >Xshare/doc/root/tutorials/graphics/canvas2.C >Xshare/doc/root/tutorials/graphics/compile.C >Xshare/doc/root/tutorials/graphics/crown.C >Xshare/doc/root/tutorials/graphics/diamond.C >Xshare/doc/root/tutorials/graphics/earth.C >Xshare/doc/root/tutorials/graphics/earth.dat >Xshare/doc/root/tutorials/graphics/ellipse.C >Xshare/doc/root/tutorials/graphics/eval.C >Xshare/doc/root/tutorials/graphics/event.C >Xshare/doc/root/tutorials/graphics/feynman.C >Xshare/doc/root/tutorials/graphics/first.C >Xshare/doc/root/tutorials/graphics/formula1.C >Xshare/doc/root/tutorials/graphics/framework.C >Xshare/doc/root/tutorials/graphics/gaxis.C >Xshare/doc/root/tutorials/graphics/gaxis2.C >Xshare/doc/root/tutorials/graphics/gaxis3.C >Xshare/doc/root/tutorials/graphics/graph_edit_playback.C >Xshare/doc/root/tutorials/graphics/greyscale.C >Xshare/doc/root/tutorials/graphics/gtime.C >Xshare/doc/root/tutorials/graphics/latex.C >Xshare/doc/root/tutorials/graphics/latex2.C >Xshare/doc/root/tutorials/graphics/latex3.C >Xshare/doc/root/tutorials/graphics/latex4.C >Xshare/doc/root/tutorials/graphics/latex5.C >Xshare/doc/root/tutorials/graphics/mandelbrot.C >Xshare/doc/root/tutorials/graphics/manyaxis.C >Xshare/doc/root/tutorials/graphics/markerwarning.C >Xshare/doc/root/tutorials/graphics/mass_spectrum.C >Xshare/doc/root/tutorials/graphics/palettes.C >Xshare/doc/root/tutorials/graphics/pavetext.C >Xshare/doc/root/tutorials/graphics/perceptualcolormap.C >Xshare/doc/root/tutorials/graphics/piechart.C >Xshare/doc/root/tutorials/graphics/polytest1.C >Xshare/doc/root/tutorials/graphics/polytest2.C >Xshare/doc/root/tutorials/graphics/pstable.C >Xshare/doc/root/tutorials/graphics/psview.C >Xshare/doc/root/tutorials/graphics/quarks.C >Xshare/doc/root/tutorials/graphics/schroedinger_hydrogen.C >Xshare/doc/root/tutorials/graphics/tmathtext.C >Xshare/doc/root/tutorials/graphics/tmathtext2.C >Xshare/doc/root/tutorials/graphics/tornado.C >Xshare/doc/root/tutorials/graphics/transparency.C >Xshare/doc/root/tutorials/graphics/triangles.C >Xshare/doc/root/tutorials/graphs/SWAN2017.dat >Xshare/doc/root/tutorials/graphs/annotation3d.C >Xshare/doc/root/tutorials/graphs/approx.C >Xshare/doc/root/tutorials/graphs/bent.C >Xshare/doc/root/tutorials/graphs/bent.py >Xshare/doc/root/tutorials/graphs/exclusiongraph.C >Xshare/doc/root/tutorials/graphs/exclusiongraph2.C >Xshare/doc/root/tutorials/graphs/gerrors.C >Xshare/doc/root/tutorials/graphs/gerrors2.C >Xshare/doc/root/tutorials/graphs/gmultierrors.C >Xshare/doc/root/tutorials/graphs/graph.C >Xshare/doc/root/tutorials/graphs/graph2derrorsfit.C >Xshare/doc/root/tutorials/graphs/graphApply.C >Xshare/doc/root/tutorials/graphs/graphShade.C >Xshare/doc/root/tutorials/graphs/graphpalettecolor.C >Xshare/doc/root/tutorials/graphs/graphpolar.C >Xshare/doc/root/tutorials/graphs/graphpolar2.C >Xshare/doc/root/tutorials/graphs/graphpolar3.C >Xshare/doc/root/tutorials/graphs/graphstruct.C >Xshare/doc/root/tutorials/graphs/graphtext.C >Xshare/doc/root/tutorials/graphs/gtime.C >Xshare/doc/root/tutorials/graphs/gtime2.C >Xshare/doc/root/tutorials/graphs/hlGraph1.C >Xshare/doc/root/tutorials/graphs/hlGraph2.C >Xshare/doc/root/tutorials/graphs/labels1.C >Xshare/doc/root/tutorials/graphs/labels2.C >Xshare/doc/root/tutorials/graphs/motorcycle.C >Xshare/doc/root/tutorials/graphs/motorcycle.dat >Xshare/doc/root/tutorials/graphs/multigraph.C >Xshare/doc/root/tutorials/graphs/multigraphpalettecolor.C >Xshare/doc/root/tutorials/graphs/multipalette.C >Xshare/doc/root/tutorials/graphs/seism.C >Xshare/doc/root/tutorials/graphs/splines_test.C >Xshare/doc/root/tutorials/graphs/surfaces.C >Xshare/doc/root/tutorials/graphs/timeSeriesFromCSV.C >Xshare/doc/root/tutorials/graphs/timeSeriesFromCSV.py >Xshare/doc/root/tutorials/graphs/timeSeriesFromCSV_TDF.C >Xshare/doc/root/tutorials/graphs/timeonaxis.C >Xshare/doc/root/tutorials/graphs/timeonaxis2.C >Xshare/doc/root/tutorials/graphs/timeonaxis3.C >Xshare/doc/root/tutorials/graphs/waves.C >Xshare/doc/root/tutorials/graphs/zdemo.C >Xshare/doc/root/tutorials/graphs/zones.C >Xshare/doc/root/tutorials/graphs/zones.py >Xshare/doc/root/tutorials/gui/CPUMeter.C >Xshare/doc/root/tutorials/gui/Slider3Demo.C >Xshare/doc/root/tutorials/gui/WorldMap.C >Xshare/doc/root/tutorials/gui/buttonChangelabel.C >Xshare/doc/root/tutorials/gui/buttonTest.C >Xshare/doc/root/tutorials/gui/buttongroupState.C >Xshare/doc/root/tutorials/gui/buttonsLayout.C >Xshare/doc/root/tutorials/gui/calendar.C >Xshare/doc/root/tutorials/gui/customContextMenu.C >Xshare/doc/root/tutorials/gui/customTH1Fmenu.C >Xshare/doc/root/tutorials/gui/drag_and_drop.C >Xshare/doc/root/tutorials/gui/exec3.C >Xshare/doc/root/tutorials/gui/exec_macro.C >Xshare/doc/root/tutorials/gui/games.C >Xshare/doc/root/tutorials/gui/gtreeTableTest.C >Xshare/doc/root/tutorials/gui/guiWithCINT.C >Xshare/doc/root/tutorials/gui/guilabels.C >Xshare/doc/root/tutorials/gui/guitest.C >Xshare/doc/root/tutorials/gui/guitest_playback.C >Xshare/doc/root/tutorials/gui/iconAsXPMData.C >Xshare/doc/root/tutorials/gui/listBox.C >Xshare/doc/root/tutorials/gui/mditest.C >Xshare/doc/root/tutorials/gui/mditestbg.xpm >Xshare/doc/root/tutorials/gui/ntupleTableTest.C >Xshare/doc/root/tutorials/gui/numberEntry.C >Xshare/doc/root/tutorials/gui/simpleTableTest.C >Xshare/doc/root/tutorials/gui/splitbuttonTest.C >Xshare/doc/root/tutorials/gui/splitterHorizontal.C >Xshare/doc/root/tutorials/gui/splitterVertical.C >Xshare/doc/root/tutorials/gui/staffTableTest.C >Xshare/doc/root/tutorials/gui/statusBar.C >Xshare/doc/root/tutorials/gui/textEntries.C >Xshare/doc/root/tutorials/gui/textviewostream.C >Xshare/doc/root/tutorials/gui/worldmap.jpg >Xshare/doc/root/tutorials/hist/ContourList.C >Xshare/doc/root/tutorials/hist/DynamicSlice.C >Xshare/doc/root/tutorials/hist/Fibonacci.C >Xshare/doc/root/tutorials/hist/FirstContour.C >Xshare/doc/root/tutorials/hist/NormalizeHistogram.C >Xshare/doc/root/tutorials/hist/ZoomHistogram.C >Xshare/doc/root/tutorials/hist/candledecay.C >Xshare/doc/root/tutorials/hist/candlehisto.C >Xshare/doc/root/tutorials/hist/candleplot.C >Xshare/doc/root/tutorials/hist/candleplotoption.C >Xshare/doc/root/tutorials/hist/candleplotstack.C >Xshare/doc/root/tutorials/hist/candleplotwhiskers.C >Xshare/doc/root/tutorials/hist/candlescaled.C >Xshare/doc/root/tutorials/hist/cumulative.C >Xshare/doc/root/tutorials/hist/data/tprofile2poly_tutorial.data >Xshare/doc/root/tutorials/hist/draw2dopt.C >Xshare/doc/root/tutorials/hist/exec1.C >Xshare/doc/root/tutorials/hist/exec2.C >Xshare/doc/root/tutorials/hist/fillhistosauto2p.C >Xshare/doc/root/tutorials/hist/fillrandom.C >Xshare/doc/root/tutorials/hist/fillrandom.py >Xshare/doc/root/tutorials/hist/h1ReadAndDraw.C >Xshare/doc/root/tutorials/hist/h2proj.C >Xshare/doc/root/tutorials/hist/hbars.C >Xshare/doc/root/tutorials/hist/histpalettecolor.C >Xshare/doc/root/tutorials/hist/hksimple.C >Xshare/doc/root/tutorials/hist/hlHisto1.C >Xshare/doc/root/tutorials/hist/hlHisto2.C >Xshare/doc/root/tutorials/hist/hlHisto3.C >Xshare/doc/root/tutorials/hist/hlHisto4.C >Xshare/doc/root/tutorials/hist/hlabels1.C >Xshare/doc/root/tutorials/hist/hlabels2.C >Xshare/doc/root/tutorials/hist/hstack.C >Xshare/doc/root/tutorials/hist/hsum.C >Xshare/doc/root/tutorials/hist/hsumTimer.C >Xshare/doc/root/tutorials/hist/legendautoplaced.C >Xshare/doc/root/tutorials/hist/logscales.C >Xshare/doc/root/tutorials/hist/movepalette.C >Xshare/doc/root/tutorials/hist/multicolor.C >Xshare/doc/root/tutorials/hist/ratioplot1.C >Xshare/doc/root/tutorials/hist/ratioplot1.py >Xshare/doc/root/tutorials/hist/ratioplot2.C >Xshare/doc/root/tutorials/hist/ratioplot2.py >Xshare/doc/root/tutorials/hist/ratioplot3.C >Xshare/doc/root/tutorials/hist/ratioplot3.py >Xshare/doc/root/tutorials/hist/ratioplot4.C >Xshare/doc/root/tutorials/hist/ratioplot4.py >Xshare/doc/root/tutorials/hist/ratioplot5.C >Xshare/doc/root/tutorials/hist/ratioplot5.py >Xshare/doc/root/tutorials/hist/ratioplot6.C >Xshare/doc/root/tutorials/hist/ratioplot6.py >Xshare/doc/root/tutorials/hist/ratioplotOld.C >Xshare/doc/root/tutorials/hist/rebin.C >Xshare/doc/root/tutorials/hist/reverseaxis.C >Xshare/doc/root/tutorials/hist/sparsehist.C >Xshare/doc/root/tutorials/hist/statsEditing.C >Xshare/doc/root/tutorials/hist/testSmooth.C >Xshare/doc/root/tutorials/hist/th2polyBoxes.C >Xshare/doc/root/tutorials/hist/th2polyEurope.C >Xshare/doc/root/tutorials/hist/th2polyHoneycomb.C >Xshare/doc/root/tutorials/hist/th2polyUSA.C >Xshare/doc/root/tutorials/hist/thstack2palettecolor.C >Xshare/doc/root/tutorials/hist/thstackpalettecolor.C >Xshare/doc/root/tutorials/hist/tprofile2polyRealistic.C >Xshare/doc/root/tutorials/hist/tprofile2polyRealisticModuleError.C >Xshare/doc/root/tutorials/hist/transpad.C >Xshare/doc/root/tutorials/hist/twoscales.C >Xshare/doc/root/tutorials/hist/twoscales.py >Xshare/doc/root/tutorials/hist/xyplot.C >Xshare/doc/root/tutorials/histfactory/ModifyInterpolation.C >Xshare/doc/root/tutorials/histfactory/example.py >Xshare/doc/root/tutorials/histfactory/example.xml >Xshare/doc/root/tutorials/histfactory/example_DataDriven.xml >Xshare/doc/root/tutorials/histfactory/example_DataDriven_controlRegion.xml >Xshare/doc/root/tutorials/histfactory/example_DataDriven_signalRegion.xml >Xshare/doc/root/tutorials/histfactory/example_Expression.xml >Xshare/doc/root/tutorials/histfactory/example_Expression_channel.xml >Xshare/doc/root/tutorials/histfactory/example_ShapeSys.xml >Xshare/doc/root/tutorials/histfactory/example_ShapeSys2D.xml >Xshare/doc/root/tutorials/histfactory/example_ShapeSys2D_channel.xml >Xshare/doc/root/tutorials/histfactory/example_ShapeSys_channel.xml >Xshare/doc/root/tutorials/histfactory/example_channel.xml >Xshare/doc/root/tutorials/histfactory/hf001_example.C >Xshare/doc/root/tutorials/histfactory/makeExample.C >Xshare/doc/root/tutorials/histfactory/makeQuickModel.py >Xshare/doc/root/tutorials/hsimple.C >Xshare/doc/root/tutorials/hsimple.root >Xshare/doc/root/tutorials/html/MakeTutorials.C >Xshare/doc/root/tutorials/http/auth.txt >Xshare/doc/root/tutorials/http/custom.C >Xshare/doc/root/tutorials/http/custom.htm >Xshare/doc/root/tutorials/http/histfitserver.C >Xshare/doc/root/tutorials/http/httpaccess.C >Xshare/doc/root/tutorials/http/httpcontrol.C >Xshare/doc/root/tutorials/http/httpgeom.C >Xshare/doc/root/tutorials/http/httpserver.C >Xshare/doc/root/tutorials/http/httptextlog.C >Xshare/doc/root/tutorials/http/httptextlog.js >Xshare/doc/root/tutorials/http/ws.C >Xshare/doc/root/tutorials/http/ws.htm >Xshare/doc/root/tutorials/image/fore.xpm >Xshare/doc/root/tutorials/image/galaxy_image.C >Xshare/doc/root/tutorials/image/hist2image.C >Xshare/doc/root/tutorials/image/hsumanim.C >Xshare/doc/root/tutorials/image/image2hist.C >Xshare/doc/root/tutorials/image/img2pad.C >Xshare/doc/root/tutorials/image/imgconv.C >Xshare/doc/root/tutorials/image/mditestbg.xpm >Xshare/doc/root/tutorials/image/pad2png.C >Xshare/doc/root/tutorials/image/rose512.jpg >Xshare/doc/root/tutorials/image/rose_image.C >Xshare/doc/root/tutorials/image/trans_graph.C >Xshare/doc/root/tutorials/index.md >Xshare/doc/root/tutorials/io/copyFiles.C >Xshare/doc/root/tutorials/io/dirs.C >Xshare/doc/root/tutorials/io/double32.C >Xshare/doc/root/tutorials/io/fildir.C >Xshare/doc/root/tutorials/io/file.C >Xshare/doc/root/tutorials/io/float16.C >Xshare/doc/root/tutorials/io/hadd.C >Xshare/doc/root/tutorials/io/importCode.C >Xshare/doc/root/tutorials/io/loopdir.C >Xshare/doc/root/tutorials/io/loopdir11.C >Xshare/doc/root/tutorials/io/mergeSelective.C >Xshare/doc/root/tutorials/io/readCode.C >Xshare/doc/root/tutorials/io/testMergeCont.C >Xshare/doc/root/tutorials/io/testTMPIFile.C >Xshare/doc/root/tutorials/launcher.py >Xshare/doc/root/tutorials/legacy/MyTasks.cxx >Xshare/doc/root/tutorials/legacy/benchmarks.C >Xshare/doc/root/tutorials/legacy/cont/TListAndSTL.C >Xshare/doc/root/tutorials/legacy/cont/index.md >Xshare/doc/root/tutorials/legacy/geant3tasks.C >Xshare/doc/root/tutorials/legacy/htmlex.C >Xshare/doc/root/tutorials/legacy/index.md >Xshare/doc/root/tutorials/legacy/mlp/index.md >Xshare/doc/root/tutorials/legacy/mlp/mlpHiggs.C >Xshare/doc/root/tutorials/legacy/mlp/mlpHiggs.root >Xshare/doc/root/tutorials/legacy/mlp/mlpRegression.C >Xshare/doc/root/tutorials/legacy/pyroot/benchmarks.py >Xshare/doc/root/tutorials/legacy/pyroot/fildir.py >Xshare/doc/root/tutorials/legacy/pyroot/file.py >Xshare/doc/root/tutorials/legacy/pyroot/first.py >Xshare/doc/root/tutorials/legacy/pyroot/framework.py >Xshare/doc/root/tutorials/legacy/pyroot/index.md >Xshare/doc/root/tutorials/legacy/pyroot/rootmarks.py >Xshare/doc/root/tutorials/legacy/pyroot/test.py >Xshare/doc/root/tutorials/legacy/pyroot/tree.py >Xshare/doc/root/tutorials/legacy/regexp/index.md >Xshare/doc/root/tutorials/legacy/regexp/regexp.C >Xshare/doc/root/tutorials/legacy/regexp/regexp_pme.C >Xshare/doc/root/tutorials/legacy/rootalias.C >Xshare/doc/root/tutorials/legacy/rootenv.C >Xshare/doc/root/tutorials/legacy/rootmarks.C >Xshare/doc/root/tutorials/legacy/tasks.C >Xshare/doc/root/tutorials/legacy/thread/index.md >Xshare/doc/root/tutorials/legacy/thread/stressThreadPool.C >Xshare/doc/root/tutorials/legacy/thread/threadPool.C >Xshare/doc/root/tutorials/legacy/thread/threads.C >Xshare/doc/root/tutorials/legacy/thread/threadsh1.C >Xshare/doc/root/tutorials/legacy/thread/threadsh2.C >Xshare/doc/root/tutorials/math/Bessel.C >Xshare/doc/root/tutorials/math/Bessel.py >Xshare/doc/root/tutorials/math/ChebyshevPol.C >Xshare/doc/root/tutorials/math/CrystalBall.C >Xshare/doc/root/tutorials/math/FeldmanCousins.C >Xshare/doc/root/tutorials/math/GammaFun.C >Xshare/doc/root/tutorials/math/Legendre.C >Xshare/doc/root/tutorials/math/Legendre.py >Xshare/doc/root/tutorials/math/LegendreAssoc.C >Xshare/doc/root/tutorials/math/Rolke.C >Xshare/doc/root/tutorials/math/TSVDUnfoldExample.C >Xshare/doc/root/tutorials/math/binomial.C >Xshare/doc/root/tutorials/math/chi2test.C >Xshare/doc/root/tutorials/math/exampleFunction.py >Xshare/doc/root/tutorials/math/exampleFunctor.C >Xshare/doc/root/tutorials/math/exampleMultiRoot.C >Xshare/doc/root/tutorials/math/exampleTKDE.C >Xshare/doc/root/tutorials/math/goftest.C >Xshare/doc/root/tutorials/math/hlquantiles.C >Xshare/doc/root/tutorials/math/kdTreeBinning.C >Xshare/doc/root/tutorials/math/limit.C >Xshare/doc/root/tutorials/math/mathBeta.C >Xshare/doc/root/tutorials/math/mathGammaNormal.C >Xshare/doc/root/tutorials/math/mathLaplace.C >Xshare/doc/root/tutorials/math/mathStudent.C >Xshare/doc/root/tutorials/math/mathcoreCDF.C >Xshare/doc/root/tutorials/math/mathcoreGenVector.C >Xshare/doc/root/tutorials/math/mathcoreSpecFunc.C >Xshare/doc/root/tutorials/math/mathcoreStatFunc.C >Xshare/doc/root/tutorials/math/mathcoreStatFunc.py >Xshare/doc/root/tutorials/math/mathcoreVectorCollection.C >Xshare/doc/root/tutorials/math/mathcoreVectorFloatIO.C >Xshare/doc/root/tutorials/math/mathcoreVectorIO.C >Xshare/doc/root/tutorials/math/mathmoreIntegration.C >Xshare/doc/root/tutorials/math/multidimSampling.C >Xshare/doc/root/tutorials/math/multivarGaus.C >Xshare/doc/root/tutorials/math/normalDist.C >Xshare/doc/root/tutorials/math/normalDist.py >Xshare/doc/root/tutorials/math/permute.C >Xshare/doc/root/tutorials/math/principal.C >Xshare/doc/root/tutorials/math/principal.py >Xshare/doc/root/tutorials/math/quantiles.C >Xshare/doc/root/tutorials/math/quasirandom.C >Xshare/doc/root/tutorials/math/tStudent.C >Xshare/doc/root/tutorials/math/tStudent.py >Xshare/doc/root/tutorials/math/testrandom.C >Xshare/doc/root/tutorials/math/vavilov.C >Xshare/doc/root/tutorials/matrix/decomposeQR.C >Xshare/doc/root/tutorials/matrix/invertMatrix.C >Xshare/doc/root/tutorials/matrix/solveLinear.C >Xshare/doc/root/tutorials/mc/CompareMasses.C >Xshare/doc/root/tutorials/mc/mass_width_2008.mc.txt >Xshare/doc/root/tutorials/multicore/imt001_parBranchProcessing.C >Xshare/doc/root/tutorials/multicore/imt101_parTreeProcessing.C >Xshare/doc/root/tutorials/multicore/mp001_fillHistos.C >Xshare/doc/root/tutorials/multicore/mp101_fillNtuples.C >Xshare/doc/root/tutorials/multicore/mp102_readNtuplesFillHistosAndFit.C >Xshare/doc/root/tutorials/multicore/mp103_processSelector.C >Xshare/doc/root/tutorials/multicore/mp104_processH1.C >Xshare/doc/root/tutorials/multicore/mp105_processEntryList.C >Xshare/doc/root/tutorials/multicore/mp201_parallelHistoFill.C >Xshare/doc/root/tutorials/multicore/mp_H1_lambdas.C >Xshare/doc/root/tutorials/multicore/mt001_fillHistos.C >Xshare/doc/root/tutorials/multicore/mt101_fillNtuples.C >Xshare/doc/root/tutorials/multicore/mt102_readNtuplesFillHistosAndFit.C >Xshare/doc/root/tutorials/multicore/mt103_fillNtupleFromMultipleThreads.C >Xshare/doc/root/tutorials/multicore/mt201_parallelHistoFill.C >Xshare/doc/root/tutorials/multicore/mt301_TTaskGroupSimple.C >Xshare/doc/root/tutorials/multicore/mt304_fillHistos.C >Xshare/doc/root/tutorials/multicore/mtbb001_fillHistos.C >Xshare/doc/root/tutorials/multicore/mtbb101_fillNtuples.C >Xshare/doc/root/tutorials/multicore/mtbb201_parallelHistoFill.C >Xshare/doc/root/tutorials/net/TUriTest.C >Xshare/doc/root/tutorials/net/TestAuth.C >Xshare/doc/root/tutorials/net/authclient.C >Xshare/doc/root/tutorials/net/authserv.C >Xshare/doc/root/tutorials/net/fastMergeServer.C >Xshare/doc/root/tutorials/net/hclient.C >Xshare/doc/root/tutorials/net/hcons.C >Xshare/doc/root/tutorials/net/hprod.C >Xshare/doc/root/tutorials/net/hserv.C >Xshare/doc/root/tutorials/net/hserv2.C >Xshare/doc/root/tutorials/net/parallelMergeClient.C >Xshare/doc/root/tutorials/net/parallelMergeServer.C >Xshare/doc/root/tutorials/net/parallelMergeTest.C >Xshare/doc/root/tutorials/net/parallelMergeTest.sh >Xshare/doc/root/tutorials/net/pclient.C >Xshare/doc/root/tutorials/net/pserv.C >Xshare/doc/root/tutorials/net/spy.C >Xshare/doc/root/tutorials/net/spyserv.C >Xshare/doc/root/tutorials/net/testTUDPSocket.C >Xshare/doc/root/tutorials/net/treeClient.C >Xshare/doc/root/tutorials/net/udpserver.c >Xshare/doc/root/tutorials/physics/PhaseSpace.C >Xshare/doc/root/tutorials/proof/EmptyInclude.h >Xshare/doc/root/tutorials/proof/ProcFileElements.C >Xshare/doc/root/tutorials/proof/ProcFileElements.h >Xshare/doc/root/tutorials/proof/ProofAux.C >Xshare/doc/root/tutorials/proof/ProofAux.h >Xshare/doc/root/tutorials/proof/ProofEvent.C >Xshare/doc/root/tutorials/proof/ProofEvent.h >Xshare/doc/root/tutorials/proof/ProofEventProc.C >Xshare/doc/root/tutorials/proof/ProofEventProc.h >Xshare/doc/root/tutorials/proof/ProofFriends.C >Xshare/doc/root/tutorials/proof/ProofFriends.h >Xshare/doc/root/tutorials/proof/ProofNtuple.C >Xshare/doc/root/tutorials/proof/ProofNtuple.h >Xshare/doc/root/tutorials/proof/ProofPythia.C >Xshare/doc/root/tutorials/proof/ProofPythia.h >Xshare/doc/root/tutorials/proof/ProofSimple.C >Xshare/doc/root/tutorials/proof/ProofSimple.h >Xshare/doc/root/tutorials/proof/ProofSimpleFile.C >Xshare/doc/root/tutorials/proof/ProofSimpleFile.h >Xshare/doc/root/tutorials/proof/ProofStdVect.C >Xshare/doc/root/tutorials/proof/ProofStdVect.h >Xshare/doc/root/tutorials/proof/ProofTests.C >Xshare/doc/root/tutorials/proof/ProofTests.h >Xshare/doc/root/tutorials/proof/event.md5sum >Xshare/doc/root/tutorials/proof/event.par >Xshare/doc/root/tutorials/proof/finalizeProof.C >Xshare/doc/root/tutorials/proof/getProof.C >Xshare/doc/root/tutorials/proof/index.md >Xshare/doc/root/tutorials/proof/ntprndm.root >Xshare/doc/root/tutorials/proof/packtest1.md5sum >Xshare/doc/root/tutorials/proof/packtest1.par >Xshare/doc/root/tutorials/proof/packtest2.md5sum >Xshare/doc/root/tutorials/proof/packtest2.par >Xshare/doc/root/tutorials/proof/packtest3.md5sum >Xshare/doc/root/tutorials/proof/packtest3.par >Xshare/doc/root/tutorials/proof/pythia8.par >Xshare/doc/root/tutorials/proof/runProof.C >Xshare/doc/root/tutorials/pyroot/DynamicSlice.py >Xshare/doc/root/tutorials/pyroot/aptuple.txt >Xshare/doc/root/tutorials/pyroot/demo.py >Xshare/doc/root/tutorials/pyroot/demoshelp.py >Xshare/doc/root/tutorials/pyroot/example_data.dat >Xshare/doc/root/tutorials/pyroot/fillrandom.py >Xshare/doc/root/tutorials/pyroot/fit1.py >Xshare/doc/root/tutorials/pyroot/fit1_py.py >Xshare/doc/root/tutorials/pyroot/formula1.py >Xshare/doc/root/tutorials/pyroot/geometry.py >Xshare/doc/root/tutorials/pyroot/gerrors.py >Xshare/doc/root/tutorials/pyroot/graph.py >Xshare/doc/root/tutorials/pyroot/gui_ex.py >Xshare/doc/root/tutorials/pyroot/h1ReadAndDraw.py >Xshare/doc/root/tutorials/pyroot/hsimple.py >Xshare/doc/root/tutorials/pyroot/hsum.py >Xshare/doc/root/tutorials/pyroot/mrt.py >Xshare/doc/root/tutorials/pyroot/multifit.py >Xshare/doc/root/tutorials/pyroot/na49geomfile.py >Xshare/doc/root/tutorials/pyroot/na49view.py >Xshare/doc/root/tutorials/pyroot/na49visible.py >Xshare/doc/root/tutorials/pyroot/ntuple1.py >Xshare/doc/root/tutorials/pyroot/numberEntry.py >Xshare/doc/root/tutorials/pyroot/parse_CSV_file_with_TTree_ReadStream.py >Xshare/doc/root/tutorials/pyroot/pyroot001_arrayInterface.py >Xshare/doc/root/tutorials/pyroot/pyroot002_pythonizationDecorator.py >Xshare/doc/root/tutorials/pyroot/pyroot003_prettyPrinting.py >Xshare/doc/root/tutorials/pyroot/pyroot004_NumbaDeclare.py >Xshare/doc/root/tutorials/pyroot/ratioplot.py >Xshare/doc/root/tutorials/pyroot/shapes.py >Xshare/doc/root/tutorials/pyroot/staff.py >Xshare/doc/root/tutorials/pyroot/surfaces.py >Xshare/doc/root/tutorials/pyroot/tornado.py >Xshare/doc/root/tutorials/pyroot/zdemo.py >Xshare/doc/root/tutorials/pythia/pythia8.C >Xshare/doc/root/tutorials/pythia/pythiaExample.C >Xshare/doc/root/tutorials/quadp/Quad.cxx >Xshare/doc/root/tutorials/quadp/Quad.h >Xshare/doc/root/tutorials/quadp/portfolio.C >Xshare/doc/root/tutorials/quadp/stock.root >Xshare/doc/root/tutorials/r/DataFrame.C >Xshare/doc/root/tutorials/r/Function.C >Xshare/doc/root/tutorials/r/Functor.C >Xshare/doc/root/tutorials/r/GlobalMinimization.C >Xshare/doc/root/tutorials/r/Integration.C >Xshare/doc/root/tutorials/r/Interpolation.C >Xshare/doc/root/tutorials/r/Minimization.C >Xshare/doc/root/tutorials/r/SimpleFitting.C >Xshare/doc/root/tutorials/r/example.C >Xshare/doc/root/tutorials/rcanvas/comic.woff2 >Xshare/doc/root/tutorials/rcanvas/df104.py >Xshare/doc/root/tutorials/rcanvas/df105.json >Xshare/doc/root/tutorials/rcanvas/df105.py >Xshare/doc/root/tutorials/rcanvas/raxis.cxx >Xshare/doc/root/tutorials/rcanvas/rbox.cxx >Xshare/doc/root/tutorials/rcanvas/rbox.py >Xshare/doc/root/tutorials/rcanvas/rcanvas_mt.cxx >Xshare/doc/root/tutorials/rcanvas/rcanvas_update.cxx >Xshare/doc/root/tutorials/rcanvas/rframe.cxx >Xshare/doc/root/tutorials/rcanvas/rh1.cxx >Xshare/doc/root/tutorials/rcanvas/rh1_large.cxx >Xshare/doc/root/tutorials/rcanvas/rh1_twoscales.cxx >Xshare/doc/root/tutorials/rcanvas/rh2.cxx >Xshare/doc/root/tutorials/rcanvas/rh2_colz.cxx >Xshare/doc/root/tutorials/rcanvas/rh2_large.cxx >Xshare/doc/root/tutorials/rcanvas/rh3.cxx >Xshare/doc/root/tutorials/rcanvas/rh3_large.cxx >Xshare/doc/root/tutorials/rcanvas/rlegend.cxx >Xshare/doc/root/tutorials/rcanvas/rline.cxx >Xshare/doc/root/tutorials/rcanvas/rline_style.cxx >Xshare/doc/root/tutorials/rcanvas/rline_width.cxx >Xshare/doc/root/tutorials/rcanvas/rmarker.cxx >Xshare/doc/root/tutorials/rcanvas/rpad.cxx >Xshare/doc/root/tutorials/rcanvas/rpave.cxx >Xshare/doc/root/tutorials/rcanvas/rstyle.cxx >Xshare/doc/root/tutorials/rcanvas/rtext_align.cxx >Xshare/doc/root/tutorials/rcanvas/rtext_angle.cxx >Xshare/doc/root/tutorials/rcanvas/rtext_font.cxx >Xshare/doc/root/tutorials/rcanvas/subpads.cxx >Xshare/doc/root/tutorials/rcanvas/symlog.cxx >Xshare/doc/root/tutorials/rcanvas/th1_twoscales.cxx >Xshare/doc/root/tutorials/rcanvas/tobject.cxx >Xshare/doc/root/tutorials/roofit/input_histos_rf_lagrangianmorph.root >Xshare/doc/root/tutorials/roofit/rf101_basics.C >Xshare/doc/root/tutorials/roofit/rf101_basics.py >Xshare/doc/root/tutorials/roofit/rf102_dataimport.C >Xshare/doc/root/tutorials/roofit/rf102_dataimport.py >Xshare/doc/root/tutorials/roofit/rf103_interprfuncs.C >Xshare/doc/root/tutorials/roofit/rf103_interprfuncs.py >Xshare/doc/root/tutorials/roofit/rf104_classfactory.C >Xshare/doc/root/tutorials/roofit/rf104_classfactory.py >Xshare/doc/root/tutorials/roofit/rf105_funcbinding.C >Xshare/doc/root/tutorials/roofit/rf105_funcbinding.py >Xshare/doc/root/tutorials/roofit/rf106_plotdecoration.C >Xshare/doc/root/tutorials/roofit/rf106_plotdecoration.py >Xshare/doc/root/tutorials/roofit/rf107_plotstyles.C >Xshare/doc/root/tutorials/roofit/rf107_plotstyles.py >Xshare/doc/root/tutorials/roofit/rf108_plotbinning.C >Xshare/doc/root/tutorials/roofit/rf108_plotbinning.py >Xshare/doc/root/tutorials/roofit/rf109_chi2residpull.C >Xshare/doc/root/tutorials/roofit/rf109_chi2residpull.py >Xshare/doc/root/tutorials/roofit/rf110_normintegration.C >Xshare/doc/root/tutorials/roofit/rf110_normintegration.py >Xshare/doc/root/tutorials/roofit/rf111_derivatives.C >Xshare/doc/root/tutorials/roofit/rf111_derivatives.py >Xshare/doc/root/tutorials/roofit/rf201_composite.C >Xshare/doc/root/tutorials/roofit/rf201_composite.py >Xshare/doc/root/tutorials/roofit/rf202_extendedmlfit.C >Xshare/doc/root/tutorials/roofit/rf202_extendedmlfit.py >Xshare/doc/root/tutorials/roofit/rf203_ranges.C >Xshare/doc/root/tutorials/roofit/rf203_ranges.py >Xshare/doc/root/tutorials/roofit/rf204_extrangefit.py >Xshare/doc/root/tutorials/roofit/rf204a_extendedLikelihood.C >Xshare/doc/root/tutorials/roofit/rf204a_extendedLikelihood.py >Xshare/doc/root/tutorials/roofit/rf204b_extendedLikelihood_rangedFit.C >Xshare/doc/root/tutorials/roofit/rf205_compplot.C >Xshare/doc/root/tutorials/roofit/rf205_compplot.py >Xshare/doc/root/tutorials/roofit/rf206_treevistools.C >Xshare/doc/root/tutorials/roofit/rf206_treevistools.py >Xshare/doc/root/tutorials/roofit/rf207_comptools.C >Xshare/doc/root/tutorials/roofit/rf207_comptools.py >Xshare/doc/root/tutorials/roofit/rf208_convolution.C >Xshare/doc/root/tutorials/roofit/rf208_convolution.py >Xshare/doc/root/tutorials/roofit/rf209_anaconv.C >Xshare/doc/root/tutorials/roofit/rf209_anaconv.py >Xshare/doc/root/tutorials/roofit/rf210_angularconv.C >Xshare/doc/root/tutorials/roofit/rf210_angularconv.py >Xshare/doc/root/tutorials/roofit/rf211_paramconv.C >Xshare/doc/root/tutorials/roofit/rf211_paramconv.py >Xshare/doc/root/tutorials/roofit/rf212_plottingInRanges_blinding.C >Xshare/doc/root/tutorials/roofit/rf212_plottingInRanges_blinding.py >Xshare/doc/root/tutorials/roofit/rf301_composition.C >Xshare/doc/root/tutorials/roofit/rf301_composition.py >Xshare/doc/root/tutorials/roofit/rf302_utilfuncs.C >Xshare/doc/root/tutorials/roofit/rf302_utilfuncs.py >Xshare/doc/root/tutorials/roofit/rf303_conditional.C >Xshare/doc/root/tutorials/roofit/rf303_conditional.py >Xshare/doc/root/tutorials/roofit/rf304_uncorrprod.C >Xshare/doc/root/tutorials/roofit/rf304_uncorrprod.py >Xshare/doc/root/tutorials/roofit/rf305_condcorrprod.C >Xshare/doc/root/tutorials/roofit/rf305_condcorrprod.py >Xshare/doc/root/tutorials/roofit/rf306_condpereventerrors.C >Xshare/doc/root/tutorials/roofit/rf306_condpereventerrors.py >Xshare/doc/root/tutorials/roofit/rf307_fullpereventerrors.C >Xshare/doc/root/tutorials/roofit/rf307_fullpereventerrors.py >Xshare/doc/root/tutorials/roofit/rf308_normintegration2d.C >Xshare/doc/root/tutorials/roofit/rf308_normintegration2d.py >Xshare/doc/root/tutorials/roofit/rf309_ndimplot.C >Xshare/doc/root/tutorials/roofit/rf309_ndimplot.py >Xshare/doc/root/tutorials/roofit/rf310_sliceplot.C >Xshare/doc/root/tutorials/roofit/rf310_sliceplot.py >Xshare/doc/root/tutorials/roofit/rf311_rangeplot.C >Xshare/doc/root/tutorials/roofit/rf311_rangeplot.py >Xshare/doc/root/tutorials/roofit/rf312_multirangefit.C >Xshare/doc/root/tutorials/roofit/rf312_multirangefit.py >Xshare/doc/root/tutorials/roofit/rf313_paramranges.C >Xshare/doc/root/tutorials/roofit/rf313_paramranges.py >Xshare/doc/root/tutorials/roofit/rf314_paramfitrange.C >Xshare/doc/root/tutorials/roofit/rf314_paramfitrange.py >Xshare/doc/root/tutorials/roofit/rf315_projectpdf.C >Xshare/doc/root/tutorials/roofit/rf315_projectpdf.py >Xshare/doc/root/tutorials/roofit/rf316_llratioplot.C >Xshare/doc/root/tutorials/roofit/rf316_llratioplot.py >Xshare/doc/root/tutorials/roofit/rf401_importttreethx.C >Xshare/doc/root/tutorials/roofit/rf401_importttreethx.py >Xshare/doc/root/tutorials/roofit/rf402_datahandling.C >Xshare/doc/root/tutorials/roofit/rf402_datahandling.py >Xshare/doc/root/tutorials/roofit/rf403_weightedevts.C >Xshare/doc/root/tutorials/roofit/rf403_weightedevts.py >Xshare/doc/root/tutorials/roofit/rf404_categories.C >Xshare/doc/root/tutorials/roofit/rf404_categories.py >Xshare/doc/root/tutorials/roofit/rf405_realtocatfuncs.C >Xshare/doc/root/tutorials/roofit/rf405_realtocatfuncs.py >Xshare/doc/root/tutorials/roofit/rf406_cattocatfuncs.C >Xshare/doc/root/tutorials/roofit/rf406_cattocatfuncs.py >Xshare/doc/root/tutorials/roofit/rf407_latextables.C >Xshare/doc/root/tutorials/roofit/rf407_latextables.py >Xshare/doc/root/tutorials/roofit/rf408_RDataFrameToRooFit.C >Xshare/doc/root/tutorials/roofit/rf408_RDataFrameToRooFit.py >Xshare/doc/root/tutorials/roofit/rf409_NumPyPandasToRooFit.py >Xshare/doc/root/tutorials/roofit/rf501_simultaneouspdf.C >Xshare/doc/root/tutorials/roofit/rf501_simultaneouspdf.py >Xshare/doc/root/tutorials/roofit/rf502_wspacewrite.C >Xshare/doc/root/tutorials/roofit/rf502_wspacewrite.py >Xshare/doc/root/tutorials/roofit/rf503_wspaceread.C >Xshare/doc/root/tutorials/roofit/rf503_wspaceread.py >Xshare/doc/root/tutorials/roofit/rf504_simwstool.C >Xshare/doc/root/tutorials/roofit/rf504_simwstool.py >Xshare/doc/root/tutorials/roofit/rf505_asciicfg.C >Xshare/doc/root/tutorials/roofit/rf505_asciicfg.py >Xshare/doc/root/tutorials/roofit/rf505_asciicfg.txt >Xshare/doc/root/tutorials/roofit/rf506_msgservice.C >Xshare/doc/root/tutorials/roofit/rf506_msgservice.py >Xshare/doc/root/tutorials/roofit/rf507_debugtools.C >Xshare/doc/root/tutorials/roofit/rf507_debugtools.py >Xshare/doc/root/tutorials/roofit/rf508_listsetmanip.C >Xshare/doc/root/tutorials/roofit/rf508_listsetmanip.py >Xshare/doc/root/tutorials/roofit/rf509_wsinteractive.C >Xshare/doc/root/tutorials/roofit/rf509_wsinteractive.py >Xshare/doc/root/tutorials/roofit/rf510_wsnamedsets.C >Xshare/doc/root/tutorials/roofit/rf510_wsnamedsets.py >Xshare/doc/root/tutorials/roofit/rf511_wsfactory_basic.C >Xshare/doc/root/tutorials/roofit/rf511_wsfactory_basic.py >Xshare/doc/root/tutorials/roofit/rf512_wsfactory_oper.C >Xshare/doc/root/tutorials/roofit/rf512_wsfactory_oper.py >Xshare/doc/root/tutorials/roofit/rf513_wsfactory_tools.C >Xshare/doc/root/tutorials/roofit/rf513_wsfactory_tools.py >Xshare/doc/root/tutorials/roofit/rf514_RooCustomizer.C >Xshare/doc/root/tutorials/roofit/rf514_RooCustomizer.py >Xshare/doc/root/tutorials/roofit/rf515_hfJSON.json >Xshare/doc/root/tutorials/roofit/rf515_hfJSON.py >Xshare/doc/root/tutorials/roofit/rf601_intminuit.C >Xshare/doc/root/tutorials/roofit/rf601_intminuit.py >Xshare/doc/root/tutorials/roofit/rf602_chi2fit.C >Xshare/doc/root/tutorials/roofit/rf602_chi2fit.py >Xshare/doc/root/tutorials/roofit/rf603_multicpu.C >Xshare/doc/root/tutorials/roofit/rf603_multicpu.py >Xshare/doc/root/tutorials/roofit/rf604_constraints.C >Xshare/doc/root/tutorials/roofit/rf604_constraints.py >Xshare/doc/root/tutorials/roofit/rf605_profilell.C >Xshare/doc/root/tutorials/roofit/rf605_profilell.py >Xshare/doc/root/tutorials/roofit/rf606_nllerrorhandling.C >Xshare/doc/root/tutorials/roofit/rf606_nllerrorhandling.py >Xshare/doc/root/tutorials/roofit/rf607_fitresult.C >Xshare/doc/root/tutorials/roofit/rf607_fitresult.py >Xshare/doc/root/tutorials/roofit/rf608_fitresultaspdf.C >Xshare/doc/root/tutorials/roofit/rf608_fitresultaspdf.py >Xshare/doc/root/tutorials/roofit/rf609_xychi2fit.C >Xshare/doc/root/tutorials/roofit/rf609_xychi2fit.py >Xshare/doc/root/tutorials/roofit/rf610_visualerror.C >Xshare/doc/root/tutorials/roofit/rf610_visualerror.py >Xshare/doc/root/tutorials/roofit/rf611_weightedfits.C >Xshare/doc/root/tutorials/roofit/rf612_recoverFromInvalidParameters.C >Xshare/doc/root/tutorials/roofit/rf612_recoverFromInvalidParameters.py >Xshare/doc/root/tutorials/roofit/rf613_global_observables.C >Xshare/doc/root/tutorials/roofit/rf613_global_observables.py >Xshare/doc/root/tutorials/roofit/rf701_efficiencyfit.C >Xshare/doc/root/tutorials/roofit/rf701_efficiencyfit.py >Xshare/doc/root/tutorials/roofit/rf702_efficiencyfit_2D.C >Xshare/doc/root/tutorials/roofit/rf702_efficiencyfit_2D.py >Xshare/doc/root/tutorials/roofit/rf703_effpdfprod.C >Xshare/doc/root/tutorials/roofit/rf703_effpdfprod.py >Xshare/doc/root/tutorials/roofit/rf704_amplitudefit.C >Xshare/doc/root/tutorials/roofit/rf704_amplitudefit.py >Xshare/doc/root/tutorials/roofit/rf705_linearmorph.C >Xshare/doc/root/tutorials/roofit/rf705_linearmorph.py >Xshare/doc/root/tutorials/roofit/rf706_histpdf.C >Xshare/doc/root/tutorials/roofit/rf706_histpdf.py >Xshare/doc/root/tutorials/roofit/rf707_kernelestimation.C >Xshare/doc/root/tutorials/roofit/rf707_kernelestimation.py >Xshare/doc/root/tutorials/roofit/rf708_bphysics.C >Xshare/doc/root/tutorials/roofit/rf708_bphysics.py >Xshare/doc/root/tutorials/roofit/rf709_BarlowBeeston.C >Xshare/doc/root/tutorials/roofit/rf709_BarlowBeeston.py >Xshare/doc/root/tutorials/roofit/rf710_roopoly.C >Xshare/doc/root/tutorials/roofit/rf710_roopoly.py >Xshare/doc/root/tutorials/roofit/rf711_lagrangianmorph.C >Xshare/doc/root/tutorials/roofit/rf711_lagrangianmorph.py >Xshare/doc/root/tutorials/roofit/rf712_lagrangianmorphfit.C >Xshare/doc/root/tutorials/roofit/rf712_lagrangianmorphfit.py >Xshare/doc/root/tutorials/roofit/rf801_mcstudy.C >Xshare/doc/root/tutorials/roofit/rf801_mcstudy.py >Xshare/doc/root/tutorials/roofit/rf802_mcstudy_addons.C >Xshare/doc/root/tutorials/roofit/rf802_mcstudy_addons.py >Xshare/doc/root/tutorials/roofit/rf803_mcstudy_addons2.C >Xshare/doc/root/tutorials/roofit/rf803_mcstudy_addons2.py >Xshare/doc/root/tutorials/roofit/rf804_mcstudy_constr.C >Xshare/doc/root/tutorials/roofit/rf804_mcstudy_constr.py >Xshare/doc/root/tutorials/roofit/rf901_numintconfig.C >Xshare/doc/root/tutorials/roofit/rf901_numintconfig.py >Xshare/doc/root/tutorials/roofit/rf902_numgenconfig.C >Xshare/doc/root/tutorials/roofit/rf902_numgenconfig.py >Xshare/doc/root/tutorials/roofit/rf903_numintcache.C >Xshare/doc/root/tutorials/roofit/rf903_numintcache.py >Xshare/doc/root/tutorials/roostats/CreateExampleFile.C >Xshare/doc/root/tutorials/roostats/FourBinInstructional.C >Xshare/doc/root/tutorials/roostats/HybridInstructional.C >Xshare/doc/root/tutorials/roostats/HybridOriginalDemo.C >Xshare/doc/root/tutorials/roostats/HybridStandardForm.C >Xshare/doc/root/tutorials/roostats/IntervalExamples.C >Xshare/doc/root/tutorials/roostats/ModelInspector.C >Xshare/doc/root/tutorials/roostats/MultivariateGaussianTest.C >Xshare/doc/root/tutorials/roostats/NuMuToNuE_Oscillation.cxx >Xshare/doc/root/tutorials/roostats/NuMuToNuE_Oscillation.h >Xshare/doc/root/tutorials/roostats/OneSidedFrequentistUpperLimitWithBands.C >Xshare/doc/root/tutorials/roostats/StandardBayesianMCMCDemo.C >Xshare/doc/root/tutorials/roostats/StandardBayesianNumericalDemo.C >Xshare/doc/root/tutorials/roostats/StandardFeldmanCousinsDemo.C >Xshare/doc/root/tutorials/roostats/StandardFrequentistDiscovery.C >Xshare/doc/root/tutorials/roostats/StandardHistFactoryPlotsWithCategories.C >Xshare/doc/root/tutorials/roostats/StandardHypoTestDemo.C >Xshare/doc/root/tutorials/roostats/StandardHypoTestInvDemo.C >Xshare/doc/root/tutorials/roostats/StandardProfileInspectorDemo.C >Xshare/doc/root/tutorials/roostats/StandardProfileLikelihoodDemo.C >Xshare/doc/root/tutorials/roostats/StandardTestStatDistributionDemo.C >Xshare/doc/root/tutorials/roostats/TestNonCentral.C >Xshare/doc/root/tutorials/roostats/TwoSidedFrequentistUpperLimitWithBands.C >Xshare/doc/root/tutorials/roostats/Zbi_Zgamma.C >Xshare/doc/root/tutorials/roostats/rs101_limitexample.C >Xshare/doc/root/tutorials/roostats/rs102_hypotestwithshapes.C >Xshare/doc/root/tutorials/roostats/rs301_splot.C >Xshare/doc/root/tutorials/roostats/rs302_JeffreysPriorDemo.C >Xshare/doc/root/tutorials/roostats/rs401c_FeldmanCousins.C >Xshare/doc/root/tutorials/roostats/rs401d_FeldmanCousins.C >Xshare/doc/root/tutorials/roostats/rs601_HLFactoryexample.C >Xshare/doc/root/tutorials/roostats/rs602_HLFactoryCombinationexample.C >Xshare/doc/root/tutorials/roostats/rs603_HLFactoryElaborateExample.C >Xshare/doc/root/tutorials/roostats/rs701_BayesianCalculator.C >Xshare/doc/root/tutorials/roostats/rs801_HypoTestInverterOriginal.C >Xshare/doc/root/tutorials/roostats/rs_bernsteinCorrection.C >Xshare/doc/root/tutorials/roostats/rs_numberCountingCombination.C >Xshare/doc/root/tutorials/roostats/rs_numbercountingutils.C >Xshare/doc/root/tutorials/rootlogoff.C >Xshare/doc/root/tutorials/rootlogon.C >Xshare/doc/root/tutorials/spectrum/Background_compton.C >Xshare/doc/root/tutorials/spectrum/Background_decr.C >Xshare/doc/root/tutorials/spectrum/Background_gamma256.C >Xshare/doc/root/tutorials/spectrum/Background_gamma64.C >Xshare/doc/root/tutorials/spectrum/Background_incr.C >Xshare/doc/root/tutorials/spectrum/Background_order.C >Xshare/doc/root/tutorials/spectrum/Background_smooth.C >Xshare/doc/root/tutorials/spectrum/Background_synt256.C >Xshare/doc/root/tutorials/spectrum/Background_width.C >Xshare/doc/root/tutorials/spectrum/Background_width2.C >Xshare/doc/root/tutorials/spectrum/Deconvolution.C >Xshare/doc/root/tutorials/spectrum/Deconvolution2_1.C >Xshare/doc/root/tutorials/spectrum/Deconvolution2_2.C >Xshare/doc/root/tutorials/spectrum/Deconvolution2_HR.C >Xshare/doc/root/tutorials/spectrum/DeconvolutionRL_wide.C >Xshare/doc/root/tutorials/spectrum/DeconvolutionRL_wide_boost.C >Xshare/doc/root/tutorials/spectrum/Deconvolution_wide.C >Xshare/doc/root/tutorials/spectrum/Deconvolution_wide_boost.C >Xshare/doc/root/tutorials/spectrum/FitAwmi.C >Xshare/doc/root/tutorials/spectrum/SearchHR1.C >Xshare/doc/root/tutorials/spectrum/SearchHR3.C >Xshare/doc/root/tutorials/spectrum/Smooth.C >Xshare/doc/root/tutorials/spectrum/Smoothing.C >Xshare/doc/root/tutorials/spectrum/Src.C >Xshare/doc/root/tutorials/spectrum/Src2.C >Xshare/doc/root/tutorials/spectrum/Src3.C >Xshare/doc/root/tutorials/spectrum/Src4.C >Xshare/doc/root/tutorials/spectrum/Src5.C >Xshare/doc/root/tutorials/spectrum/TSpectrum.root >Xshare/doc/root/tutorials/spectrum/TSpectrum2.root >Xshare/doc/root/tutorials/spectrum/peaks.C >Xshare/doc/root/tutorials/spectrum/peaks2.C >Xshare/doc/root/tutorials/spectrum/spectrumpainter.C >Xshare/doc/root/tutorials/splot/TestSPlot.C >Xshare/doc/root/tutorials/splot/TestSPlot_toyMC.dat >Xshare/doc/root/tutorials/sql/SQLiteIPLocation.C >Xshare/doc/root/tutorials/sql/SQLitePlatformDistribution.C >Xshare/doc/root/tutorials/sql/SQLiteTimeVersionOfRoot.C >Xshare/doc/root/tutorials/sql/SQLiteVersionsOfRoot.C >Xshare/doc/root/tutorials/sql/runcatalog.sql >Xshare/doc/root/tutorials/sql/sqlcanvas.C >Xshare/doc/root/tutorials/sql/sqlcreatedb.C >Xshare/doc/root/tutorials/sql/sqlcreatedb.py >Xshare/doc/root/tutorials/sql/sqlfilldb.C >Xshare/doc/root/tutorials/sql/sqlfilldb.py >Xshare/doc/root/tutorials/sql/sqlselect.C >Xshare/doc/root/tutorials/sql/sqlselect.py >Xshare/doc/root/tutorials/sql/sqltables.C >Xshare/doc/root/tutorials/tmva/PyTorch_Generate_CNN_Model.py >Xshare/doc/root/tutorials/tmva/TMVAClassification.C >Xshare/doc/root/tutorials/tmva/TMVAClassificationApplication.C >Xshare/doc/root/tutorials/tmva/TMVAClassificationCategory.C >Xshare/doc/root/tutorials/tmva/TMVAClassificationCategoryApplication.C >Xshare/doc/root/tutorials/tmva/TMVACrossValidation.C >Xshare/doc/root/tutorials/tmva/TMVACrossValidationApplication.C >Xshare/doc/root/tutorials/tmva/TMVACrossValidationRegression.C >Xshare/doc/root/tutorials/tmva/TMVAGAexample.C >Xshare/doc/root/tutorials/tmva/TMVAGAexample2.C >Xshare/doc/root/tutorials/tmva/TMVAMinimalClassification.C >Xshare/doc/root/tutorials/tmva/TMVAMulticlass.C >Xshare/doc/root/tutorials/tmva/TMVAMulticlassApplication.C >Xshare/doc/root/tutorials/tmva/TMVAMultipleBackgroundExample.C >Xshare/doc/root/tutorials/tmva/TMVARegression.C >Xshare/doc/root/tutorials/tmva/TMVARegressionApplication.C >Xshare/doc/root/tutorials/tmva/TMVA_CNN_Classification.C >Xshare/doc/root/tutorials/tmva/TMVA_Higgs_Classification.C >Xshare/doc/root/tutorials/tmva/TMVA_RNN_Classification.C >Xshare/doc/root/tutorials/tmva/TMVA_SOFIE_Keras.C >Xshare/doc/root/tutorials/tmva/TMVA_SOFIE_ONNX.C >Xshare/doc/root/tutorials/tmva/TMVA_SOFIE_PyTorch.C >Xshare/doc/root/tutorials/tmva/createData.C >Xshare/doc/root/tutorials/tmva/data/toy_sigbkg_categ_offset.root >Xshare/doc/root/tutorials/tmva/data/toy_sigbkg_categ_varoff.root >Xshare/doc/root/tutorials/tmva/envelope/classification.C >Xshare/doc/root/tutorials/tmva/envelope/index.md >Xshare/doc/root/tutorials/tmva/keras/ApplicationClassificationKeras.py >Xshare/doc/root/tutorials/tmva/keras/ApplicationRegressionKeras.py >Xshare/doc/root/tutorials/tmva/keras/ClassificationKeras.py >Xshare/doc/root/tutorials/tmva/keras/GenerateModel.py >Xshare/doc/root/tutorials/tmva/keras/MulticlassKeras.py >Xshare/doc/root/tutorials/tmva/keras/RegressionKeras.py >Xshare/doc/root/tutorials/tmva/keras/index.md >Xshare/doc/root/tutorials/tmva/line-small.png >Xshare/doc/root/tutorials/tmva/makefile >Xshare/doc/root/tutorials/tmva/pytorch/ApplicationClassificationPyTorch.py >Xshare/doc/root/tutorials/tmva/pytorch/ApplicationRegressionPyTorch.py >Xshare/doc/root/tutorials/tmva/pytorch/ClassificationPyTorch.py >Xshare/doc/root/tutorials/tmva/pytorch/MulticlassPyTorch.py >Xshare/doc/root/tutorials/tmva/pytorch/RegressionPyTorch.py >Xshare/doc/root/tutorials/tmva/pytorch/index.md >Xshare/doc/root/tutorials/tmva/sigmoid-small.png >Xshare/doc/root/tutorials/tmva/tmva001_RTensor.C >Xshare/doc/root/tutorials/tmva/tmva002_RDataFrameAsTensor.C >Xshare/doc/root/tutorials/tmva/tmva003_RReader.C >Xshare/doc/root/tutorials/tmva/tmva004_RStandardScaler.C >Xshare/doc/root/tutorials/tmva/tmva100_DataPreparation.py >Xshare/doc/root/tutorials/tmva/tmva101_Training.py >Xshare/doc/root/tutorials/tmva/tmva102_Testing.py >Xshare/doc/root/tutorials/tmva/tmva103_Application.C >Xshare/doc/root/tutorials/tmva/tmva_logo.gif >Xshare/doc/root/tutorials/tmva/tmva_logo.svg >Xshare/doc/root/tutorials/tree/JetEvent.cxx >Xshare/doc/root/tutorials/tree/JetEvent.h >Xshare/doc/root/tutorials/tree/basic.C >Xshare/doc/root/tutorials/tree/basic.dat >Xshare/doc/root/tutorials/tree/basic2.C >Xshare/doc/root/tutorials/tree/bill.C >Xshare/doc/root/tutorials/tree/cernbuild.C >Xshare/doc/root/tutorials/tree/cernstaff.C >Xshare/doc/root/tutorials/tree/cernstaff.dat >Xshare/doc/root/tutorials/tree/circular.C >Xshare/doc/root/tutorials/tree/clonesA_Event.C >Xshare/doc/root/tutorials/tree/clonesA_Event.cxx >Xshare/doc/root/tutorials/tree/clonesA_Event.h >Xshare/doc/root/tutorials/tree/copytree.C >Xshare/doc/root/tutorials/tree/copytree2.C >Xshare/doc/root/tutorials/tree/copytree3.C >Xshare/doc/root/tutorials/tree/drawsparse.C >Xshare/doc/root/tutorials/tree/h1analysis.C >Xshare/doc/root/tutorials/tree/h1analysis.h >Xshare/doc/root/tutorials/tree/h1analysisProxy.C >Xshare/doc/root/tutorials/tree/h1analysisProxy.h >Xshare/doc/root/tutorials/tree/h1analysisProxyCut.C >Xshare/doc/root/tutorials/tree/h1analysisTreeReader.C >Xshare/doc/root/tutorials/tree/h1analysisTreeReader.h >Xshare/doc/root/tutorials/tree/h1chain.C >Xshare/doc/root/tutorials/tree/hsimpleProxy.C >Xshare/doc/root/tutorials/tree/hsimpleProxyDriver.C >Xshare/doc/root/tutorials/tree/hsimpleReader.C >Xshare/doc/root/tutorials/tree/htest.C >Xshare/doc/root/tutorials/tree/hvector.C >Xshare/doc/root/tutorials/tree/jets.C >Xshare/doc/root/tutorials/tree/ntuple1.C >Xshare/doc/root/tutorials/tree/parallelcoord.C >Xshare/doc/root/tutorials/tree/parallelcoordtrans.C >Xshare/doc/root/tutorials/tree/printSizes.C >Xshare/doc/root/tutorials/tree/run_h1analysis.C >Xshare/doc/root/tutorials/tree/simpleAnalysis.txt >Xshare/doc/root/tutorials/tree/spider.C >Xshare/doc/root/tutorials/tree/staff.C >Xshare/doc/root/tutorials/tree/tcl.C >Xshare/doc/root/tutorials/tree/temperature.C >Xshare/doc/root/tutorials/tree/temperature_Prague.dat >Xshare/doc/root/tutorials/tree/tree.C >Xshare/doc/root/tutorials/tree/tree0.C >Xshare/doc/root/tutorials/tree/tree1.C >Xshare/doc/root/tutorials/tree/tree2.C >Xshare/doc/root/tutorials/tree/tree2a.C >Xshare/doc/root/tutorials/tree/tree3.C >Xshare/doc/root/tutorials/tree/tree4.C >Xshare/doc/root/tutorials/tree/treefriend.C >Xshare/doc/root/tutorials/tree/treegetval.C >Xshare/doc/root/tutorials/tree/tv3.C >Xshare/doc/root/tutorials/tree/tvdemo.C >Xshare/doc/root/tutorials/unfold/index.md >Xshare/doc/root/tutorials/unfold/testUnfold1.C >Xshare/doc/root/tutorials/unfold/testUnfold2.C >Xshare/doc/root/tutorials/unfold/testUnfold3.C >Xshare/doc/root/tutorials/unfold/testUnfold4.C >Xshare/doc/root/tutorials/unfold/testUnfold5a.C >Xshare/doc/root/tutorials/unfold/testUnfold5b.C >Xshare/doc/root/tutorials/unfold/testUnfold5c.C >Xshare/doc/root/tutorials/unfold/testUnfold5d.C >Xshare/doc/root/tutorials/unfold/testUnfold6.C >Xshare/doc/root/tutorials/unfold/testUnfold6binning.xml >Xshare/doc/root/tutorials/unfold/testUnfold7a.C >Xshare/doc/root/tutorials/unfold/testUnfold7b.C >Xshare/doc/root/tutorials/unfold/testUnfold7binning.xml >Xshare/doc/root/tutorials/unfold/testUnfold7c.C >Xshare/doc/root/tutorials/unfold/tunfoldbinning.dtd >Xshare/doc/root/tutorials/unuran/unuranDemo.C >Xshare/doc/root/tutorials/unuran/unuranFoamTest.C >Xshare/doc/root/tutorials/v7/browser.cxx >Xshare/doc/root/tutorials/v7/concurrentfill.cxx >Xshare/doc/root/tutorials/v7/filedialog.cxx >Xshare/doc/root/tutorials/v7/fitpanel.cxx >Xshare/doc/root/tutorials/v7/fitpanel6.cxx >Xshare/doc/root/tutorials/v7/global_temperatures.cxx >Xshare/doc/root/tutorials/v7/histops.cxx >Xshare/doc/root/tutorials/v7/index.md >Xshare/doc/root/tutorials/v7/ntuple/index.md >Xshare/doc/root/tutorials/v7/ntuple/ntpl001_staff.C >Xshare/doc/root/tutorials/v7/ntuple/ntpl002_vector.C >Xshare/doc/root/tutorials/v7/ntuple/ntpl003_lhcbOpenData.C >Xshare/doc/root/tutorials/v7/ntuple/ntpl004_dimuon.C >Xshare/doc/root/tutorials/v7/ntuple/ntpl005_introspection.C >Xshare/doc/root/tutorials/v7/ntuple/ntpl006_friends.C >Xshare/doc/root/tutorials/v7/ntuple/ntpl007_mtFill.C >Xshare/doc/root/tutorials/v7/perf.cxx >Xshare/doc/root/tutorials/v7/perfcomp.cxx >Xshare/doc/root/tutorials/v7/simple.cxx >Xshare/doc/root/tutorials/vecops/vo001_AdoptOrOwnMemory.C >Xshare/doc/root/tutorials/vecops/vo001_AdoptOrOwnMemory.py >Xshare/doc/root/tutorials/vecops/vo002_VectorCalculations.C >Xshare/doc/root/tutorials/vecops/vo003_LogicalOperations.C >Xshare/doc/root/tutorials/vecops/vo004_SortAndSelect.C >Xshare/doc/root/tutorials/vecops/vo004_SortAndSelect.py >Xshare/doc/root/tutorials/vecops/vo005_Combinations.C >Xshare/doc/root/tutorials/vecops/vo005_Combinations.py >Xshare/doc/root/tutorials/vecops/vo006_IndexManipulation.C >Xshare/doc/root/tutorials/vecops/vo007_PhysicsHelpers.C >Xshare/doc/root/tutorials/webgui/panel/Readme.md >Xshare/doc/root/tutorials/webgui/panel/controller/TestPanel.controller.js >Xshare/doc/root/tutorials/webgui/panel/server.cxx >Xshare/doc/root/tutorials/webgui/panel/view/TestPanel.view.xml >Xshare/doc/root/tutorials/webgui/ping/Readme.md >Xshare/doc/root/tutorials/webgui/ping/ping.cxx >Xshare/doc/root/tutorials/webgui/ping/ping.html >Xshare/doc/root/tutorials/webgui/qt5web/CMakeLists.txt >Xshare/doc/root/tutorials/webgui/qt5web/ExampleMain.cpp >Xshare/doc/root/tutorials/webgui/qt5web/ExampleWidget.cpp >Xshare/doc/root/tutorials/webgui/qt5web/ExampleWidget.h >Xshare/doc/root/tutorials/webgui/qt5web/ExampleWidget.ui >Xshare/doc/root/tutorials/webgui/qt5web/RCanvasWidget.cpp >Xshare/doc/root/tutorials/webgui/qt5web/RCanvasWidget.h >Xshare/doc/root/tutorials/webgui/qt5web/RGeomViewerWidget.cpp >Xshare/doc/root/tutorials/webgui/qt5web/RGeomViewerWidget.h >Xshare/doc/root/tutorials/webgui/qt5web/Readme.md >Xshare/doc/root/tutorials/webgui/qt5web/TCanvasWidget.cpp >Xshare/doc/root/tutorials/webgui/qt5web/TCanvasWidget.h >Xshare/doc/root/tutorials/webgui/webwindow/client.html >Xshare/doc/root/tutorials/webgui/webwindow/server.cxx >Xshare/doc/root/tutorials/xml/DOMParsePerson.C >Xshare/doc/root/tutorials/xml/DOMRecursive.C >Xshare/doc/root/tutorials/xml/SAXHandler.C >Xshare/doc/root/tutorials/xml/person.dtd >Xshare/doc/root/tutorials/xml/person.xml >Xshare/doc/root/tutorials/xml/saxexample.xml >Xshare/doc/root/tutorials/xml/xmlmodifyfile.C >Xshare/doc/root/tutorials/xml/xmlnewfile.C >Xshare/doc/root/tutorials/xml/xmlreadfile.C >Xshare/emacs/site-lisp/root-help.el >Xshare/man/man1/g2root.1.gz >Xshare/man/man1/h2root.1.gz >Xshare/man/man1/hadd.1.gz >Xshare/man/man1/hist2workspace.1.gz >Xshare/man/man1/prepareHistFactory.1.gz >Xshare/man/man1/proofserv.1.gz >Xshare/man/man1/rmkdepend.1.gz >Xshare/man/man1/root-config.1.gz >Xshare/man/man1/root.1.gz >Xshare/man/man1/root.exe.1.gz >Xshare/man/man1/rootcling.1.gz >Xshare/man/man1/rootn.exe.1.gz >Xshare/man/man1/roots.exe.1.gz >Xshare/man/man1/system.rootdaemonrc.1.gz >Xshare/man/man1/xpdtest.1.gz >Xshare/root/cmake/ROOTConfig-targets-release.cmake >Xshare/root/cmake/ROOTConfig-targets.cmake >Xshare/root/cmake/ROOTConfig-version.cmake >Xshare/root/cmake/ROOTConfig.cmake >Xshare/root/cmake/ROOTUseFile.cmake >Xshare/root/cmake/RootMacros.cmake >Xshare/root/cmake/RootTestDriver.cmake >Xshare/root/fonts/BlackChancery.ttf >Xshare/root/fonts/DroidSansFallback.ttf >Xshare/root/fonts/FreeMono.otf >Xshare/root/fonts/FreeMonoBold.otf >Xshare/root/fonts/FreeMonoBoldOblique.otf >Xshare/root/fonts/FreeMonoOblique.otf >Xshare/root/fonts/FreeSans.otf >Xshare/root/fonts/FreeSansBold.otf >Xshare/root/fonts/FreeSansBoldOblique.otf >Xshare/root/fonts/FreeSansOblique.otf >Xshare/root/fonts/FreeSerif.otf >Xshare/root/fonts/FreeSerifBold.otf >Xshare/root/fonts/FreeSerifBoldItalic.otf >Xshare/root/fonts/FreeSerifItalic.otf >Xshare/root/fonts/LICENSE >Xshare/root/fonts/STIXGeneral.otf >Xshare/root/fonts/STIXGeneralBol.otf >Xshare/root/fonts/STIXGeneralBolIta.otf >Xshare/root/fonts/STIXGeneralItalic.otf >Xshare/root/fonts/STIXSiz1Sym.otf >Xshare/root/fonts/STIXSiz1SymBol.otf >Xshare/root/fonts/STIXSiz2Sym.otf >Xshare/root/fonts/STIXSiz2SymBol.otf >Xshare/root/fonts/STIXSiz3Sym.otf >Xshare/root/fonts/STIXSiz3SymBol.otf >Xshare/root/fonts/STIXSiz4Sym.otf >Xshare/root/fonts/STIXSiz4SymBol.otf >Xshare/root/fonts/STIXSiz5Sym.otf >Xshare/root/fonts/arial.ttf >Xshare/root/fonts/arialbd.ttf >Xshare/root/fonts/arialbi.ttf >Xshare/root/fonts/ariali.ttf >Xshare/root/fonts/ariblk.ttf >Xshare/root/fonts/comic.ttf >Xshare/root/fonts/comicbd.ttf >Xshare/root/fonts/cour.ttf >Xshare/root/fonts/courbd.ttf >Xshare/root/fonts/courbi.ttf >Xshare/root/fonts/couri.ttf >Xshare/root/fonts/georgia.ttf >Xshare/root/fonts/georgiab.ttf >Xshare/root/fonts/georgiai.ttf >Xshare/root/fonts/georgiaz.ttf >Xshare/root/fonts/impact.ttf >Xshare/root/fonts/monotype.ttf >Xshare/root/fonts/symbol.ttf >Xshare/root/fonts/times.ttf >Xshare/root/fonts/timesbd.ttf >Xshare/root/fonts/timesbi.ttf >Xshare/root/fonts/timesi.ttf >Xshare/root/fonts/trebuc.ttf >Xshare/root/fonts/trebucbd.ttf >Xshare/root/fonts/trebucbi.ttf >Xshare/root/fonts/trebucit.ttf >Xshare/root/fonts/verdana.ttf >Xshare/root/fonts/verdanab.ttf >Xshare/root/fonts/verdanai.ttf >Xshare/root/fonts/verdanaz.ttf >Xshare/root/fonts/webdings.ttf >Xshare/root/fonts/wingding.ttf >Xshare/root/icons/GoBack.gif >Xshare/root/icons/GoForward.gif >Xshare/root/icons/GoHome.gif >Xshare/root/icons/ReloadPage.gif >Xshare/root/icons/Root6Icon.png >Xshare/root/icons/Root6Splash.png >Xshare/root/icons/Root6Splash.xpm >Xshare/root/icons/Root6SplashEXT.xpm >Xshare/root/icons/RootIcon.ico >Xshare/root/icons/Splash.gif >Xshare/root/icons/Splash.xpm >Xshare/root/icons/StopLoading.gif >Xshare/root/icons/about.xpm >Xshare/root/icons/app_s.xpm >Xshare/root/icons/app_t.xpm >Xshare/root/icons/arc.xpm >Xshare/root/icons/arrow.xpm >Xshare/root/icons/arrow_down.xpm >Xshare/root/icons/arrow_left.xpm >Xshare/root/icons/arrow_right.xpm >Xshare/root/icons/arrow_right2.xpm >Xshare/root/icons/arrow_up.xpm >Xshare/root/icons/bld_AlignBtm.png >Xshare/root/icons/bld_AlignBtm.xpm >Xshare/root/icons/bld_AlignBtm_d.xpm >Xshare/root/icons/bld_AlignCenter.png >Xshare/root/icons/bld_AlignLeft.png >Xshare/root/icons/bld_AlignLeft.xpm >Xshare/root/icons/bld_AlignLeft_d.xpm >Xshare/root/icons/bld_AlignRight.png >Xshare/root/icons/bld_AlignRight.xpm >Xshare/root/icons/bld_AlignRight_d.xpm >Xshare/root/icons/bld_AlignTop.png >Xshare/root/icons/bld_AlignTop.xpm >Xshare/root/icons/bld_AlignTop_d.xpm >Xshare/root/icons/bld_bg.png >Xshare/root/icons/bld_bg.xpm >Xshare/root/icons/bld_bgd.xpm >Xshare/root/icons/bld_break.png >Xshare/root/icons/bld_break.xpm >Xshare/root/icons/bld_break_d.xpm >Xshare/root/icons/bld_canvas.1.xpm >Xshare/root/icons/bld_canvas.xpm >Xshare/root/icons/bld_checkbutton.xpm >Xshare/root/icons/bld_colorselect.png >Xshare/root/icons/bld_colorselect.xpm >Xshare/root/icons/bld_combobox.xpm >Xshare/root/icons/bld_compact.png >Xshare/root/icons/bld_copy.png >Xshare/root/icons/bld_copy.xpm >Xshare/root/icons/bld_copy_d.xpm >Xshare/root/icons/bld_crop.png >Xshare/root/icons/bld_crop.xpm >Xshare/root/icons/bld_crop_d.xpm >Xshare/root/icons/bld_cut.png >Xshare/root/icons/bld_cut.xpm >Xshare/root/icons/bld_cut_d.xpm >Xshare/root/icons/bld_delete.png >Xshare/root/icons/bld_delete.xpm >Xshare/root/icons/bld_delete_d.xpm >Xshare/root/icons/bld_edit.png >Xshare/root/icons/bld_edit.xpm >Xshare/root/icons/bld_edit_s.png >Xshare/root/icons/bld_embedcanvas.xpm >Xshare/root/icons/bld_entry.xpm >Xshare/root/icons/bld_exit.png >Xshare/root/icons/bld_fontselect.gif >Xshare/root/icons/bld_fontselect.png >Xshare/root/icons/bld_grab.xpm >Xshare/root/icons/bld_grab_d.xpm >Xshare/root/icons/bld_grid.png >Xshare/root/icons/bld_grid.xpm >Xshare/root/icons/bld_grid_d.xpm >Xshare/root/icons/bld_groupframe.xpm >Xshare/root/icons/bld_hbox.png >Xshare/root/icons/bld_hbox.xpm >Xshare/root/icons/bld_hbox_d.xpm >Xshare/root/icons/bld_hpaned.xpm >Xshare/root/icons/bld_hprogressbar.xpm >Xshare/root/icons/bld_hscrollbar.xpm >Xshare/root/icons/bld_hseparator.xpm >Xshare/root/icons/bld_hslider.xpm >Xshare/root/icons/bld_image.xpm >Xshare/root/icons/bld_label.xpm >Xshare/root/icons/bld_layout.xpm >Xshare/root/icons/bld_layout_d.xpm >Xshare/root/icons/bld_listbox.xpm >Xshare/root/icons/bld_listtree.xpm >Xshare/root/icons/bld_mainframe.xpm >Xshare/root/icons/bld_new.png >Xshare/root/icons/bld_new.xpm >Xshare/root/icons/bld_newtab.png >Xshare/root/icons/bld_numberentry.xpm >Xshare/root/icons/bld_open.png >Xshare/root/icons/bld_open.xpm >Xshare/root/icons/bld_paste.png >Xshare/root/icons/bld_paste.xpm >Xshare/root/icons/bld_paste_d.xpm >Xshare/root/icons/bld_paste_into.png >Xshare/root/icons/bld_plus.png >Xshare/root/icons/bld_pointer.xpm >Xshare/root/icons/bld_radiobutton.xpm >Xshare/root/icons/bld_redo.png >Xshare/root/icons/bld_redo.xpm >Xshare/root/icons/bld_redo_d.xpm >Xshare/root/icons/bld_removetab.png >Xshare/root/icons/bld_rename.png >Xshare/root/icons/bld_replace.xpm >Xshare/root/icons/bld_replace_d.xpm >Xshare/root/icons/bld_rgb.png >Xshare/root/icons/bld_rgb.xpm >Xshare/root/icons/bld_save.png >Xshare/root/icons/bld_save.xpm >Xshare/root/icons/bld_save_d.xpm >Xshare/root/icons/bld_shutter.png >Xshare/root/icons/bld_sortup.png >Xshare/root/icons/bld_statusbar.xpm >Xshare/root/icons/bld_stop.png >Xshare/root/icons/bld_stop.xpm >Xshare/root/icons/bld_tab.xpm >Xshare/root/icons/bld_text.xpm >Xshare/root/icons/bld_textbutton.xpm >Xshare/root/icons/bld_undo.png >Xshare/root/icons/bld_undo.xpm >Xshare/root/icons/bld_undo_d.xpm >Xshare/root/icons/bld_vbox.png >Xshare/root/icons/bld_vbox.xpm >Xshare/root/icons/bld_vbox_d.xpm >Xshare/root/icons/bld_vpaned.xpm >Xshare/root/icons/bld_vprogressbar.xpm >Xshare/root/icons/bld_vscrollbar.xpm >Xshare/root/icons/bld_vseparator.xpm >Xshare/root/icons/bld_vslider.xpm >Xshare/root/icons/branch-cl_t.xpm >Xshare/root/icons/branch-ob_t.xpm >Xshare/root/icons/branch_folder_s.xpm >Xshare/root/icons/branch_folder_t.xpm >Xshare/root/icons/branch_t.xpm >Xshare/root/icons/browser.xpm >Xshare/root/icons/button.xpm >Xshare/root/icons/c_src_s.xpm >Xshare/root/icons/c_src_t.xpm >Xshare/root/icons/cdrom_t.xpm >Xshare/root/icons/chain_s.xpm >Xshare/root/icons/chain_t.xpm >Xshare/root/icons/checked_dis_t.xpm >Xshare/root/icons/checked_t.xpm >Xshare/root/icons/checkmark_t.xpm >Xshare/root/icons/class.png >Xshare/root/icons/closetab.png >Xshare/root/icons/closetab_d.png >Xshare/root/icons/connect.xpm >Xshare/root/icons/cpp_src_s.xpm >Xshare/root/icons/cpp_src_t.xpm >Xshare/root/icons/curlyarc.xpm >Xshare/root/icons/curlyline.xpm >Xshare/root/icons/cut-disable_t.xpm >Xshare/root/icons/cut.xpm >Xshare/root/icons/cut_t.xpm >Xshare/root/icons/deb_s.xpm >Xshare/root/icons/deb_t.xpm >Xshare/root/icons/diamond.xpm >Xshare/root/icons/disconnect.xpm >Xshare/root/icons/doc_s.xpm >Xshare/root/icons/doc_t.xpm >Xshare/root/icons/draw_t.xpm >Xshare/root/icons/ed_compile.png >Xshare/root/icons/ed_copy.png >Xshare/root/icons/ed_cut.png >Xshare/root/icons/ed_delete.png >Xshare/root/icons/ed_execute.png >Xshare/root/icons/ed_find.png >Xshare/root/icons/ed_findnext.png >Xshare/root/icons/ed_goto.png >Xshare/root/icons/ed_help.png >Xshare/root/icons/ed_interrupt.png >Xshare/root/icons/ed_new.png >Xshare/root/icons/ed_open.png >Xshare/root/icons/ed_paste.png >Xshare/root/icons/ed_print.png >Xshare/root/icons/ed_quit.png >Xshare/root/icons/ed_save.png >Xshare/root/icons/ed_saveas.png >Xshare/root/icons/ellipse.xpm >Xshare/root/icons/eve_axes.xpm >Xshare/root/icons/eve_line.xpm >Xshare/root/icons/eve_pointset.xpm >Xshare/root/icons/eve_rnr00_t.xpm >Xshare/root/icons/eve_rnr01_t.xpm >Xshare/root/icons/eve_rnr10_t.xpm >Xshare/root/icons/eve_rnr11_t.xpm >Xshare/root/icons/eve_scene.xpm >Xshare/root/icons/eve_text.gif >Xshare/root/icons/eve_track.xpm >Xshare/root/icons/eve_viewer.xpm >Xshare/root/icons/expression_t.xpm >Xshare/root/icons/f1_s.xpm >Xshare/root/icons/f1_t.xpm >Xshare/root/icons/f2_s.xpm >Xshare/root/icons/f2_t.xpm >Xshare/root/icons/fdisk_t.xpm >Xshare/root/icons/fileopen.xpm >Xshare/root/icons/filesaveas.xpm >Xshare/root/icons/filter.png >Xshare/root/icons/first_t.xpm >Xshare/root/icons/folder_s.xpm >Xshare/root/icons/folder_t.xpm >Xshare/root/icons/geoarb8_s.xpm >Xshare/root/icons/geoarb8_t.xpm >Xshare/root/icons/geoassembly_s.xpm >Xshare/root/icons/geoassembly_t.xpm >Xshare/root/icons/geobbox_s.xpm >Xshare/root/icons/geobbox_t.xpm >Xshare/root/icons/geocombi_s.xpm >Xshare/root/icons/geocombi_t.xpm >Xshare/root/icons/geocomposite_s.xpm >Xshare/root/icons/geocomposite_t.xpm >Xshare/root/icons/geocone_s.xpm >Xshare/root/icons/geocone_t.xpm >Xshare/root/icons/geoconeseg_s.xpm >Xshare/root/icons/geoconeseg_t.xpm >Xshare/root/icons/geoctub_s.xpm >Xshare/root/icons/geoctub_t.xpm >Xshare/root/icons/geoeltu_s.xpm >Xshare/root/icons/geoeltu_t.xpm >Xshare/root/icons/geogtra_s.xpm >Xshare/root/icons/geogtra_t.xpm >Xshare/root/icons/geohype_s.xpm >Xshare/root/icons/geohype_t.xpm >Xshare/root/icons/geomaterial_s.xpm >Xshare/root/icons/geomaterial_t.xpm >Xshare/root/icons/geomedium_s.xpm >Xshare/root/icons/geomedium_t.xpm >Xshare/root/icons/geomixture_s.xpm >Xshare/root/icons/geomixture_t.xpm >Xshare/root/icons/geopara_s.xpm >Xshare/root/icons/geopara_t.xpm >Xshare/root/icons/geoparab_s.xpm >Xshare/root/icons/geoparab_t.xpm >Xshare/root/icons/geopcon_s.xpm >Xshare/root/icons/geopcon_t.xpm >Xshare/root/icons/geopgon_s.xpm >Xshare/root/icons/geopgon_t.xpm >Xshare/root/icons/georotation_s.xpm >Xshare/root/icons/georotation_t.xpm >Xshare/root/icons/geosphere_s.xpm >Xshare/root/icons/geosphere_t.xpm >Xshare/root/icons/geotorus_s.xpm >Xshare/root/icons/geotorus_t.xpm >Xshare/root/icons/geotranslation_s.xpm >Xshare/root/icons/geotranslation_t.xpm >Xshare/root/icons/geotrap_s.xpm >Xshare/root/icons/geotrap_t.xpm >Xshare/root/icons/geotrd1_s.xpm >Xshare/root/icons/geotrd1_t.xpm >Xshare/root/icons/geotrd2_s.xpm >Xshare/root/icons/geotrd2_t.xpm >Xshare/root/icons/geotube_s.xpm >Xshare/root/icons/geotube_t.xpm >Xshare/root/icons/geotubeseg_s.xpm >Xshare/root/icons/geotubeseg_t.xpm >Xshare/root/icons/geovolume_s.xpm >Xshare/root/icons/geovolume_t.xpm >Xshare/root/icons/geoxtru_s.xpm >Xshare/root/icons/geoxtru_t.xpm >Xshare/root/icons/glow_green.png >Xshare/root/icons/glow_orange.png >Xshare/root/icons/glow_red.png >Xshare/root/icons/graph.xpm >Xshare/root/icons/h1_s.xpm >Xshare/root/icons/h1_t.xpm >Xshare/root/icons/h2_s.xpm >Xshare/root/icons/h2_t.xpm >Xshare/root/icons/h3_s.xpm >Xshare/root/icons/h3_t.xpm >Xshare/root/icons/h_src_s.xpm >Xshare/root/icons/h_src_t.xpm >Xshare/root/icons/hdisk_t.xpm >Xshare/root/icons/home_t.xpm >Xshare/root/icons/hor_arrow_cursor.png >Xshare/root/icons/hpp_src_s.xpm >Xshare/root/icons/hpp_src_t.xpm >Xshare/root/icons/htmlfile.gif >Xshare/root/icons/info.gif >Xshare/root/icons/inspect.xpm >Xshare/root/icons/interrupt.xpm >Xshare/root/icons/last_t.xpm >Xshare/root/icons/latex.xpm >Xshare/root/icons/leaf_method_s.xpm >Xshare/root/icons/leaf_method_t.xpm >Xshare/root/icons/leaf_s.xpm >Xshare/root/icons/leaf_t.xpm >Xshare/root/icons/line.xpm >Xshare/root/icons/listview.xpm >Xshare/root/icons/local_session.xpm >Xshare/root/icons/macro_s.xpm >Xshare/root/icons/macro_t.xpm >Xshare/root/icons/marker.xpm >Xshare/root/icons/marker1.xpm >Xshare/root/icons/marker16.xpm >Xshare/root/icons/marker18.xpm >Xshare/root/icons/marker2.xpm >Xshare/root/icons/marker20.xpm >Xshare/root/icons/marker21.xpm >Xshare/root/icons/marker22.xpm >Xshare/root/icons/marker23.xpm >Xshare/root/icons/marker24.xpm >Xshare/root/icons/marker25.xpm >Xshare/root/icons/marker26.xpm >Xshare/root/icons/marker27.xpm >Xshare/root/icons/marker28.xpm >Xshare/root/icons/marker29.xpm >Xshare/root/icons/marker3.xpm >Xshare/root/icons/marker30.xpm >Xshare/root/icons/marker4.xpm >Xshare/root/icons/marker5.xpm >Xshare/root/icons/marker6.xpm >Xshare/root/icons/marker7.xpm >Xshare/root/icons/marker8.xpm >Xshare/root/icons/mb_asterisk_s.xpm >Xshare/root/icons/mb_exclamation_s.xpm >Xshare/root/icons/mb_question_s.xpm >Xshare/root/icons/mb_stop_s.xpm >Xshare/root/icons/mdi_close.xpm >Xshare/root/icons/mdi_default.xpm >Xshare/root/icons/mdi_help.xpm >Xshare/root/icons/mdi_maximize.xpm >Xshare/root/icons/mdi_minimize.xpm >Xshare/root/icons/mdi_restore.xpm >Xshare/root/icons/member.png >Xshare/root/icons/method.png >Xshare/root/icons/modify.xpm >Xshare/root/icons/monitor01.xpm >Xshare/root/icons/monitor02.xpm >Xshare/root/icons/monitor03.xpm >Xshare/root/icons/monitor04.xpm >Xshare/root/icons/move_cursor.png >Xshare/root/icons/netdisk_s.xpm >Xshare/root/icons/netdisk_t.xpm >Xshare/root/icons/newcanvas.xpm >Xshare/root/icons/next_t.xpm >Xshare/root/icons/ntuple_s.xpm >Xshare/root/icons/ntuple_t.xpm >Xshare/root/icons/object_folder_s.xpm >Xshare/root/icons/object_folder_t.xpm >Xshare/root/icons/ofolder_t.xpm >Xshare/root/icons/open.xpm >Xshare/root/icons/pack-empty_t.xpm >Xshare/root/icons/pack_t.xpm >Xshare/root/icons/package.xpm >Xshare/root/icons/package_add.xpm >Xshare/root/icons/package_delete.xpm >Xshare/root/icons/pad.xpm >Xshare/root/icons/pause.png >Xshare/root/icons/pave.xpm >Xshare/root/icons/pavelabel.xpm >Xshare/root/icons/pavestext.xpm >Xshare/root/icons/pavetext.xpm >Xshare/root/icons/pdf.xpm >Xshare/root/icons/pointer.xpm >Xshare/root/icons/previous_t.xpm >Xshare/root/icons/printer.xpm >Xshare/root/icons/printer_s.xpm >Xshare/root/icons/profile_s.xpm >Xshare/root/icons/profile_t.xpm >Xshare/root/icons/proof_base.xpm >Xshare/root/icons/proof_connected.xpm >Xshare/root/icons/proof_disconnected.xpm >Xshare/root/icons/properties.xpm >Xshare/root/icons/ps_s.xpm >Xshare/root/icons/ps_t.xpm >Xshare/root/icons/psp_s.xpm >Xshare/root/icons/psp_t.xpm >Xshare/root/icons/query_connected.xpm >Xshare/root/icons/query_disconnected.xpm >Xshare/root/icons/query_new.xpm >Xshare/root/icons/query_submit.xpm >Xshare/root/icons/quit.xpm >Xshare/root/icons/rbutton_dis_off.xpm >Xshare/root/icons/rbutton_dis_on.xpm >Xshare/root/icons/rbutton_off.xpm >Xshare/root/icons/rbutton_on.xpm >Xshare/root/icons/record.png >Xshare/root/icons/record_t.xpm >Xshare/root/icons/recursor.png >Xshare/root/icons/refresh.png >Xshare/root/icons/refresh.xpm >Xshare/root/icons/refresh1.xpm >Xshare/root/icons/refresh2.xpm >Xshare/root/icons/replay.png >Xshare/root/icons/return_object_s.xpm >Xshare/root/icons/return_object_t.xpm >Xshare/root/icons/right_arrow_cursor.png >Xshare/root/icons/root_s.xpm >Xshare/root/icons/root_t.xpm >Xshare/root/icons/rootdb_s.xpm >Xshare/root/icons/rootdb_t.xpm >Xshare/root/icons/rootdblnk_s.xpm >Xshare/root/icons/rootdblnk_t.xpm >Xshare/root/icons/rotate.png >Xshare/root/icons/rpm_s.xpm >Xshare/root/icons/rpm_t.xpm >Xshare/root/icons/save.xpm >Xshare/root/icons/selection_t.xpm >Xshare/root/icons/slider1h.xpm >Xshare/root/icons/slider1v.xpm >Xshare/root/icons/slider2h.xpm >Xshare/root/icons/slider2v.xpm >Xshare/root/icons/sliderh.xpm >Xshare/root/icons/sliderv.xpm >Xshare/root/icons/slink_s.xpm >Xshare/root/icons/slink_t.xpm >Xshare/root/icons/sm_delete.xpm >Xshare/root/icons/sm_export.xpm >Xshare/root/icons/sm_help.xpm >Xshare/root/icons/sm_import_canvas.xpm >Xshare/root/icons/sm_import_macro.xpm >Xshare/root/icons/sm_new.xpm >Xshare/root/icons/speedo.gif >Xshare/root/icons/splitterh.xpm >Xshare/root/icons/splitterv.xpm >Xshare/root/icons/stop.png >Xshare/root/icons/stop_t.xpm >Xshare/root/icons/tb_back.xpm >Xshare/root/icons/tb_bigicons.xpm >Xshare/root/icons/tb_details.xpm >Xshare/root/icons/tb_find.xpm >Xshare/root/icons/tb_forw.xpm >Xshare/root/icons/tb_list.xpm >Xshare/root/icons/tb_newfolder.xpm >Xshare/root/icons/tb_refresh.xpm >Xshare/root/icons/tb_smicons.xpm >Xshare/root/icons/tb_uplevel.xpm >Xshare/root/icons/tmacro_s.xpm >Xshare/root/icons/tmacro_t.xpm >Xshare/root/icons/top_left_cursor.png >Xshare/root/icons/top_right_cursor.png >Xshare/root/icons/tree_s.xpm >Xshare/root/icons/tree_t.xpm >Xshare/root/icons/unchecked_dis_t.xpm >Xshare/root/icons/unchecked_t.xpm >Xshare/root/icons/ver_arrow_cursor.png >Xshare/root/icons/x_pic.xpm >Xshare/root/icons/y_pic.xpm >Xshare/root/icons/z_pic.xpm >Xshare/root/js/LICENSE >Xshare/root/js/changes.md >Xshare/root/js/files/canv_batch.htm >Xshare/root/js/files/draw.htm >Xshare/root/js/files/online.htm >Xshare/root/js/files/web.config >Xshare/root/js/files/wslist.htm >Xshare/root/js/img/RootIcon.ico >Xshare/root/js/index.htm >Xshare/root/js/scripts/JSRoot.base3d.js >Xshare/root/js/scripts/JSRoot.core.js >Xshare/root/js/scripts/JSRoot.csg.js >Xshare/root/js/scripts/JSRoot.geobase.js >Xshare/root/js/scripts/JSRoot.geom.js >Xshare/root/js/scripts/JSRoot.geoworker.js >Xshare/root/js/scripts/JSRoot.gpad.js >Xshare/root/js/scripts/JSRoot.hierarchy.js >Xshare/root/js/scripts/JSRoot.hist.js >Xshare/root/js/scripts/JSRoot.hist3d.js >Xshare/root/js/scripts/JSRoot.interactive.js >Xshare/root/js/scripts/JSRoot.io.js >Xshare/root/js/scripts/JSRoot.jq2d.js >Xshare/root/js/scripts/JSRoot.latex.js >Xshare/root/js/scripts/JSRoot.math.js >Xshare/root/js/scripts/JSRoot.menu.js >Xshare/root/js/scripts/JSRoot.more.js >Xshare/root/js/scripts/JSRoot.openui5.js >Xshare/root/js/scripts/JSRoot.painter.js >Xshare/root/js/scripts/JSRoot.tree.js >Xshare/root/js/scripts/JSRoot.v7gpad.js >Xshare/root/js/scripts/JSRoot.v7hist.js >Xshare/root/js/scripts/JSRoot.v7hist3d.js >Xshare/root/js/scripts/JSRoot.v7more.js >Xshare/root/js/scripts/JSRoot.webwindow.js >Xshare/root/js/scripts/d3.LICENSE >Xshare/root/js/scripts/d3.min.js >Xshare/root/js/scripts/dat.gui.min.js >Xshare/root/js/scripts/jquery-ui.min.js >Xshare/root/js/scripts/jquery.min.js >Xshare/root/js/scripts/jquery.mousewheel.min.js >Xshare/root/js/scripts/rawinflate.min.js >Xshare/root/js/scripts/three.LICENSE >Xshare/root/js/scripts/three.extra.min.js >Xshare/root/js/scripts/three.min.js >Xshare/root/js/scripts/touch-punch.min.js >Xshare/root/js/style/JSRoot.geom.css >Xshare/root/js/style/JSRoot.painter.css >Xshare/root/js/style/images/ui-icons_444444_256x240.png >Xshare/root/js/style/images/ui-icons_555555_256x240.png >Xshare/root/js/style/images/ui-icons_777620_256x240.png >Xshare/root/js/style/images/ui-icons_777777_256x240.png >Xshare/root/js/style/images/ui-icons_cc0000_256x240.png >Xshare/root/js/style/images/ui-icons_ffffff_256x240.png >Xshare/root/js/style/jquery-ui.css >Xshare/root/macros/Dialogs.C >Xshare/root/macros/fileopen.C >f3335670524c53630966f4b391579f8c >exit >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 267717
:
238018
|
238684
|
238685
|
238706
|
239034
|
239071
|
239084
|
239086
|
239087
|
239089
|
239109