Loading [MathJax]/extensions/MathMenu.js
ROOT
6.06/09
Reference Guide
ROOT Home Page
Main Page
Related Pages
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
•
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
Namespace for new ROOT classes and functions.
Definition:
ROOT.py:1
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