Loading [MathJax]/extensions/tex2jax.js
ROOT
6.08/07
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
2
3
<
_
a
b
c
d
e
f
g
h
i
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
2
3
a
b
c
d
e
f
g
h
i
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
l
m
n
o
p
q
r
s
u
v
x
+
Enumerations
a
d
e
f
g
h
m
p
t
v
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
u
v
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
k
l
m
n
o
p
r
s
t
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
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
k
l
m
n
o
p
r
s
v
w
x
y
z
+
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
core
metautils
inc
TSchemaType.h
Go to the documentation of this file.
1
// @(#)root/core:$Id$
2
3
#ifndef R__TSCHEMATYPE_H
4
#define R__TSCHEMATYPE_H
5
6
#if !defined(__CINT__)
7
// Avoid clutering the dictionary (in particular with the STL declaration)
8
9
#include <string>
10
11
namespace
ROOT
{
12
namespace
Internal {
13
struct
TSchemaType
{
14
TSchemaType
() {}
15
TSchemaType
(
const
char
*
type
,
const
char
*dim) :
fType
(type),
fDimensions
(dim) {}
16
TSchemaType
(std::string &
type
, std::string &dim) :
fType
(type),
fDimensions
(dim) {}
17
std::string
fType
;
18
std::string
fDimensions
;
19
};
20
}
21
}
22
#endif // __CINT__
23
#endif // R__TSCHEMATYPE_H
24
ROOT::Internal::TSchemaType::fDimensions
std::string fDimensions
Definition:
TSchemaType.h:18
ROOT::Internal::TSchemaType::TSchemaType
TSchemaType(const char *type, const char *dim)
Definition:
TSchemaType.h:15
ROOT
This namespace contains pre-defined functions to be used in conjuction with TExecutor::Map and TExecu...
Definition:
StringConv.hxx:21
ROOT::Internal::TSchemaType
Definition:
TSchemaType.h:13
ROOT::Internal::TSchemaType::TSchemaType
TSchemaType(std::string &type, std::string &dim)
Definition:
TSchemaType.h:16
ROOT::Internal::TSchemaType::fType
std::string fType
Definition:
TSchemaType.h:17
type
int type
Definition:
TGX11.cxx:120
ROOT::Internal::TSchemaType::TSchemaType
TSchemaType()
Definition:
TSchemaType.h:14