ROOT
Developer(s) | CERN |
---|---|
Stable release | 5.22/00
/ December 18, 2008 |
Repository | |
Written in | C++ |
Operating system | Cross-platform |
Type | Data analysis |
License | LGPL/GPL |
Website | http://root.cern.ch/ |
ROOT is an object-oriented program and library developed by CERN. It was originally designed for particle physics data analysis and contains several features specific to this field, but it is also commonly[dubious – discuss] used in other applications such as astronomy and data mining.
Description
Development was initiated by René Brun and Fons Rademakers in 1994. ROOT is written in C++. Some parts are published under the LGPL, while others are based on GPL software and thus are also published under the terms of the GNU General Public License (GPL). It provides platform independent access to a computer's graphics subsystem and operating system using abstract layers. Parts of the abstract platform are: a graphical user interface and a GUI builder, container classes, reflection, a C++ script and command line interpreter (CINT), object serialization and persistence.
The packages provided by ROOT include those for
- histogramming and graphing to visualize and analyze distributions and functions,
- curve fitting (regression analysis) and minimization of functionals,
- statistics tools used for data analysis,
- matrix algebra,
- four-vector computations, as used in high energy physics,
- standard mathematical functions,
- multivariate data analysis, e.g. using neural networks,
- image manipulation, used e.g. to analyze astronomical pictures,
- access to distributed data (in the context of the Grid),
- distributed computing, to parallelize data analyses,
- persistence and serialization of objects, which can cope with changes in class definitions of persistent data,
- access to databases,
- 3D visualizations (geometry)
- creating files in various graphics formats, like PostScript, JPEG, SVG,
- interfacing Python and Ruby code in both directions,
- interfacing Monte Carlo event generators.
A key feature of ROOT is a data container called tree, with its substructures branches and leaves. A tree can be seen as a sliding window to the raw data, as stored in a file. Data from the next entry in the file can be retrieved by advancing the index in the tree. This avoids memory allocation problems associated with object creation, and allows the tree to act as a lightweight container while handling buffering invisibly.
ROOT's focus on performance is caused by the amount of data that the Large Hadron Collider's experiments will collect, estimated to several petabytes per year. Physicists are expected to analyze this data using ROOT. ROOT is currently mainly used in data analysis and data acquisition in high energy physics experiments — most current experimental plots and results are obtained using ROOT.
The inclusion of the CINT C++ interpreter makes this package very versatile as it can be used in interactive, scripted and compiled modes in a manner similar to commercial products like MATLAB.
Criticisms
ROOT is very difficult for users to begin learning, largely because the ROOT documentation and webpage hardly elucidate in any way what the purpose of ROOT is. The documentation repeatedly stresses the internal design characteristics of ROOT over what features it actually provides to users. It says that ROOT's main features are "The Runtime Type Information System, The Object I/O System, Automatic Documentation Generation".[1] In documentation marked "read this first", the user is mostly told things like "the backbone of the ROOT architecture is a layered class hierarchy".[2]
From time to time, issues of ROOT's design and implementation are discussed on the ROOT users mailing list.[3][4]
Applications of ROOT
Several particle physics experiments have written software based on ROOT, often in favor of using more generic solutions (i.e. using ROOT containers instead of STL).
- Some of the running particle physics experiments using software based on ROOT
- Future particle physics experiments currently developing software based on ROOT
- Astroparticle physics projects using ROOT
References
See also
- Matplotlib - a plotting and analysis system for Python
- SciPy - a scientific data analysis system for Python, based on the NumPy classes
- HippoDraw — an alternative C++-based data analysis system
- Java Analysis Studio — a Java-based AIDA-compliant data analysis system
- R programming language
- AIDA (computing) — open interfaces and formats for particle physics data processing
- PAW
- IGOR Pro
- Scientific computing
- OpenDX
- CERN Program Library — the legacy data analysis system written in Fortran77
External links
- The ROOT System Home Page
- ROOT users mailing list
- The Qt/ROOT System Home Page
- GSI Object Oriented On-line Off-line system, an alternative GUI for ROOT based on QT/ROOT.
- OpenScientist a C++-based data analysis system, AIDA-compliant.
- The RooFit Toolkit for Data Modeling, an extension to ROOT to facilitate maximum likelihood fits
- Perl Binding using SWIG