Loading [MathJax]/extensions/tex2jax.js
ROOT
6.14/05
Reference Guide
ROOT Home
Main Page
Tutorials
Functional Parts
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
v
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
u
v
w
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
roofit
roofitcore
src
RooBanner.cxx
Go to the documentation of this file.
1
#include "
RooFit.h
"
2
3
#include "
Rtypes.h
"
4
#include "
Riostream.h
"
5
#include "
TEnv.h
"
6
7
/**
8
\file RooBanner.cxx
9
\class RooBanner
10
\ingroup Roofitcore
11
12
Print banner message when RooFit library is loaded
13
**/
14
15
using namespace
std
;
16
17
const
char
*
VTAG
=
"3.60"
;
18
19
Int_t
doBanner
();
20
21
static
Int_t
dummy
=
doBanner
() ;
22
23
Int_t
doBanner
()
24
25
{
26
#ifndef __ROOFIT_NOBANNER
27
if
(
gEnv
->
GetValue
(
"RooFit.Banner"
, 1)) {
28
cout << endl
29
<<
"\033[1mRooFit v"
<<
VTAG
<<
" -- Developed by Wouter Verkerke and David Kirkby\033[0m "
<< endl
30
<<
" Copyright (C) 2000-2013 NIKHEF, University of California & Stanford University"
<< endl
31
<<
" All rights reserved, please read http://roofit.sourceforge.net/license.txt"
<< endl
32
<< endl ;
33
}
34
#endif
35
(
void
)
dummy
;
36
return
0 ;
37
}
38
Rtypes.h
VTAG
const char * VTAG
Definition:
RooBanner.cxx:17
dummy
static Int_t dummy
Definition:
RooBanner.cxx:21
Int_t
int Int_t
Definition:
RtypesCore.h:41
std
STL namespace.
Riostream.h
doBanner
Int_t doBanner()
Definition:
RooBanner.cxx:23
gEnv
R__EXTERN TEnv * gEnv
Definition:
TEnv.h:171
void
typedef void((*Func_t)())
RooFit.h
TEnv::GetValue
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
Definition:
TEnv.cxx:491
TEnv.h