The official repository for ROOT: analyzing, storing and visualizing big data
Switch branches/tags
Clone or download
dpiparo [VecOps] Replace template partial specialisation with overloads
as these are faster to compile (interpret) and upon ROOT startup do not
need as much memory.
Latest commit 795dc10 Dec 23, 2018
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
Image .ci Simplify travis runner May 8, 2018
Image .github [github/CodeOwn] Add Stephan as RooFit reviewer! Nov 20, 2018
Image README Update release notes Dec 20, 2018
Image bindings [PyROOT] Prevent module confusion when running doctest tests Dec 21, 2018
Image build [cxxmodules] Create a overlay file for installed directory Dec 17, 2018
Image builtins Move libpcre to new builtin mechanism Dec 21, 2018
Image cmake Move libpcre to new builtin mechanism Dec 21, 2018
Image config Use CMAKE_CXX_STANDARD to set C++ standard Dec 20, 2018
Image core Move libpcre to new builtin mechanism Dec 21, 2018
Image doc Set release date. Jun 2, 2015
Image documentation [DF][NFC] Remove red lines from RDF graph image Dec 19, 2018
Image etc jsroot: dev 20/12/2018, geom viewer bugfix, WebVR support Dec 20, 2018
Image fonts Remove trailing spaces Aug 5, 2014
Image geom Compile geom/geom with -O2 if using GCC on 32bit Dec 21, 2018
Image graf2d Update graf2d/qt/CMakeLists.txt Dec 7, 2018
Image graf3d eve7: minimal formatting changes, use nullptr Dec 20, 2018
Image gui Use CMAKE_CXX_STANDARD to set C++ standard Dec 20, 2018
Image hist Improve index Dec 20, 2018
Image html Remove references to Cintex in the codebase Sep 7, 2018
Image icons Fix file permissions Aug 28, 2015
Image interpreter Use CMAKE_CXX_STANDARD to set C++ standard Dec 20, 2018
Image io json: use TObjArray for list of classes, which typeinfo not stored Dec 21, 2018
Image macros Fix Jira #ROOT-8404 macro Dialogs.C does not compile and crashes Oct 18, 2016
Image main Remove remnants of old configure build system Dec 21, 2018
Image man/man1 doc/man : remove references to rootd / proofd Dec 3, 2018
Image math [VecOps] Replace template partial specialisation with overloads Dec 23, 2018
Image misc Pin vtable for misc/table headers (#2847) Oct 25, 2018
Image montecarlo Use full relative path for source files Oct 3, 2018
Image net Fix warnings due to strncpy() usage in rpdutils Dec 7, 2018
Image proof proof/proofd: remove references to rootd Dec 3, 2018
Image roofit [RS][NFC] Remove misleading Doxygen comment Dec 23, 2018
Image rootx - white spaces Nov 29, 2018
Image sql From Sergey: Try to fix compilation error Oct 3, 2018
Image test Speed up test-bench when run from ctest Dec 20, 2018
Image tmva [TMVA][NFC] Avoid that a random comment becomes the TMVA NS doc Dec 23, 2018
Image tree [DF] Test interactive usage of GenVector templates Dec 21, 2018
Image tutorials [RF][NFC] Remove old information from tutorials top description Dec 23, 2018
Image .clang-format We want all new headers in folder ROOT to be sorted up. Sep 24, 2017
Image .clang-tidy Treat clang-tidy warnings as errors. Fixes PR wrongly marked red status. Apr 24, 2017
Image .gitattributes Fix LOGICAL type suport in TFITSIO Feb 5, 2018
Image .gitignore Protect contents of .vscode from `git clean -df` Dec 6, 2018
Image .mailmap Add .mailmap file to help with git statistics Dec 10, 2018
Image .travis.yml [Travis] Try to fix "do not run default job" / travis-ci/issues/4681. Jul 16, 2018
Image CMakeLists.txt [cmake] Fix removal of old ROOTSYS: Dec 21, 2018
Image CONTRIBUTING.md Updated link for how to make PRs Aug 9, 2017
Image LGPL2_1.txt Clarify "LGPL >= 2.1"; move LGPL text into LGPL2_1.txt. Dec 13, 2017
Image LICENSE Clarify "LGPL >= 2.1"; move LGPL text into LGPL2_1.txt. Dec 13, 2017
Image README.md [README] fix markdown format of build status table. Dec 17, 2018
Image configure Remove entry point for configure/make. Feb 6, 2018

README.md

Image

About

The ROOT system provides a set of OO frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way. Having the data defined as a set of objects, specialized storage methods are used to get direct access to the separate attributes of the selected objects, without having to touch the bulk of the data. Included are histograming methods in an arbitrary number of dimensions, curve fitting, function evaluation, minimization, graphics and visualization classes to allow the easy setup of an analysis system that can query and process the data interactively or in batch mode, as well as a general parallel processing framework, PROOF, that can considerably speed up an analysis.

Thanks to the built-in C++ interpreter cling, the command, the scripting and the programming language are all C++. The interpreter allows for fast prototyping of the macros since it removes the time consuming compile/link cycle. It also provides a good environment to learn C++. If more performance is needed the interactively developed macros can be compiled using a C++ compiler via a machine independent transparent compiler interface called ACliC.

The system has been designed in such a way that it can query its databases in parallel on clusters of workstations or many-core machines. ROOT is an open system that can be dynamically extended by linking external libraries. This makes ROOT a premier platform on which to build data acquisition, simulation and data analysis systems.

License: LGPL v2.1+ Test coverage

Build Status

Branch Nightly build status
master Build Status
v6-16-00-patches Build Status
v6-14-00-patches Build Status

Cite

We are DOI

Please cite us as

Rene Brun and Fons Rademakers, ROOT - An Object Oriented Data Analysis Framework,
Proceedings AIHENP'96 Workshop, Lausanne, Sep. 1996,
Nucl. Inst. & Meth. in Phys. Res. A 389 (1997) 81-86.
See also "ROOT" [software], Release vX.YY/ZZ, dd/mm/yyyy,
(Select the right link for your release here: https://zenodo.org/search?page=1&size=20&q=conceptrecid:848818&all_versions&sort=-version).

Live Demo for CERN Users

Image

Screenshots

These screenshots shows some of the plots (produced using ROOT) presented when the Higgs boson discovery was announced at CERN:

CMS Data MC Ratio Plot

Atlas P0 Trends

See more screenshots on our gallery.

Download and Getting Started

See root.cern download page for the latest binary releases.

Getting started with ROOT.

Building

Clone the repo

$ git clone https://github.com/root-project/root.git

Make a directory for building

$ mkdir build
$ cd build

Run cmake and make

$ cmake ../root
$ make -j8

Setup and run ROOT

$ source bin/thisroot.sh
$ root

More information regarding building.

Help and Support

Contribution Guidelines