ROOT
Version v6.32
master
v6.34
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
▼
core
►
base
►
clingutils
►
cont
►
dictgen
▼
foundation
▼
inc
▼
ROOT
RConfig.h
►
RConfig.hxx
►
RLogger.hxx
►
RNotFn.hxx
►
RRangeCast.hxx
RSpan.hxx
RStringView.hxx
►
RVersion.hxx
►
span.hxx
►
StringUtils.hxx
►
TypeTraits.hxx
►
DllImport.h
►
ESTLType.h
RStringView.h
Rstrstream.h
►
RtypesCore.h
►
RVersion.h
►
TClassEdit.h
►
TError.h
ThreadLocalStorage.h
►
res
►
src
►
v7
►
gui
►
imt
►
macosx
►
meta
►
metacling
►
multiproc
►
rint
►
testsupport
►
thread
►
unix
►
winnt
►
zip
►
documentation
►
geom
►
graf2d
►
graf3d
►
gui
►
hist
►
html
►
io
►
main
►
math
►
montecarlo
►
net
►
proof
►
roofit
►
sql
►
tmva
►
tree
►
tutorials
►
v6-32-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
RVersion.hxx
Go to the documentation of this file.
1
#ifndef ROOT_RVERSION_HXX
2
#define ROOT_RVERSION_HXX
3
4
/* Update on release: */
5
#define ROOT_VERSION_MAJOR 6
6
#define ROOT_VERSION_MINOR 32
7
#define ROOT_VERSION_PATCH 11
8
#define ROOT_RELEASE_DATE "February 10 2025"
9
10
/* Don't change the lines below. */
11
12
/*
13
* These macros can be used in the following way:
14
*
15
* #if ROOT_VERSION_CODE >= ROOT_VERSION(6,32,6)
16
* #include <newheader.h>
17
* #else
18
* #include <oldheader.h>
19
* #endif
20
*
21
*/
22
23
#define ROOT_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
24
#define ROOT_VERSION_CODE ROOT_VERSION(ROOT_VERSION_MAJOR, ROOT_VERSION_MINOR, ROOT_VERSION_PATCH)
25
26
#define R__VERS_QUOTE1_MAJOR(P) #P
27
#define R__VERS_QUOTE_MAJOR(P) R__VERS_QUOTE1_MAJOR(P)
28
29
30
#if ROOT_VERSION_MINOR < 10
31
#define R__VERS_QUOTE1_MINOR(P) "0" #P
32
#else
33
#define R__VERS_QUOTE1_MINOR(P) #P
34
#endif
35
#define R__VERS_QUOTE_MINOR(P) R__VERS_QUOTE1_MINOR(P)
36
37
#if ROOT_VERSION_PATCH < 10
38
#define R__VERS_QUOTE1_PATCH(P) "0" #P
39
#else
40
#define R__VERS_QUOTE1_PATCH(P) #P
41
#endif
42
#define R__VERS_QUOTE_PATCH(P) R__VERS_QUOTE1_PATCH(P)
43
44
#define ROOT_RELEASE R__VERS_QUOTE_MAJOR(ROOT_VERSION_MAJOR) \
45
"." R__VERS_QUOTE_MINOR(ROOT_VERSION_MINOR) \
46
"." R__VERS_QUOTE_PATCH(ROOT_VERSION_PATCH)
47
48
#endif
// ROOT_RVERSION_H
core
foundation
inc
ROOT
RVersion.hxx
ROOT v6-32 - Reference Guide Generated on Wed Apr 2 2025 08:24:20 (GVA Time) using Doxygen 1.10.0