The Gaudi Framework
master (f31105fd)
Main Page
Related Pages
Modules
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
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
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
Typedefs
a
b
c
d
e
f
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
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
q
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
n
o
p
q
r
s
t
v
Enumerator
a
b
c
d
e
f
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Properties
Related Functions
:
a
b
c
d
e
g
h
i
m
o
p
r
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
b
c
e
f
g
h
i
l
m
n
o
p
r
s
t
u
z
Variables
a
b
c
d
e
g
h
i
m
o
p
q
r
s
t
v
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerations
Enumerator
c
e
f
p
u
v
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
RHistogramCnv.cpp
Go to the documentation of this file.
1
/***********************************************************************************\
2
* (c) Copyright 1998-2024 CERN for the benefit of the LHCb and ATLAS collaborations *
3
* *
4
* This software is distributed under the terms of the Apache version 2 licence, *
5
* copied verbatim in the file "LICENSE". *
6
* *
7
* In applying this licence, CERN does not waive the privileges and immunities *
8
* granted to it by virtue of its status as an Intergovernmental Organization *
9
* or submit itself to any jurisdiction. *
10
\***********************************************************************************/
11
#include "
RHistogramCnv.h
"
12
13
#include <AIDA/IProfile1D.h>
14
#include <TProfile.h>
15
namespace
RootHistCnv
{
16
typedef
RHistogramCnv<TProfile, TProfile, Gaudi::HistogramBase>
RootHistCnvP1DCnv
;
17
template
<>
18
const
CLID
&
RootHistCnvP1DCnv::classID
() {
19
return
CLID_ProfileH;
20
}
21
DECLARE_CONVERTER
(
RootHistCnvP1DCnv
)
22
}
// namespace RootHistCnv
23
24
#include <AIDA/IProfile2D.h>
25
#include <TProfile2D.h>
26
namespace
RootHistCnv
{
27
typedef
RHistogramCnv<TProfile2D, TProfile2D, Gaudi::HistogramBase>
RootHistCnvP2DCnv
;
28
template
<>
29
const
CLID
&
RootHistCnvP2DCnv::classID
() {
30
return
CLID_ProfileH2;
31
}
32
DECLARE_CONVERTER
(
RootHistCnvP2DCnv
)
33
}
// namespace RootHistCnv
34
35
#include <AIDA/IHistogram1D.h>
36
#include <TH1D.h>
37
namespace
RootHistCnv
{
38
typedef
RHistogramCnv<TH1D, TH1, Gaudi::HistogramBase>
RootHistCnvH1DCnv
;
39
template
<>
40
const
CLID
&
RootHistCnvH1DCnv::classID
() {
41
return
CLID_H1D;
42
}
43
DECLARE_CONVERTER
(
RootHistCnvH1DCnv
)
44
}
// namespace RootHistCnv
45
46
#include <AIDA/IHistogram2D.h>
47
#include <TH2D.h>
48
namespace
RootHistCnv
{
49
typedef
RHistogramCnv<TH2D, TH2, Gaudi::HistogramBase>
RootHistCnvH2DCnv
;
50
template
<>
51
const
CLID
&
RootHistCnvH2DCnv::classID
() {
52
return
CLID_H2D;
53
}
54
DECLARE_CONVERTER
(
RootHistCnvH2DCnv
)
55
}
// namespace RootHistCnv
56
57
#include <AIDA/IHistogram3D.h>
58
#include <TH3D.h>
59
namespace
RootHistCnv
{
60
typedef
RootHistCnv::RHistogramCnv<TH3D, TH3, Gaudi::HistogramBase>
RootHistCnvH3DCnv
;
61
template
<>
62
const
CLID
&
RootHistCnvH3DCnv::classID
() {
63
return
CLID_H3D;
64
}
65
DECLARE_CONVERTER
(
RootHistCnvH3DCnv
)
66
}
// namespace RootHistCnv
RootHistCnv::RootHistCnvP1DCnv
RHistogramCnv< TProfile, TProfile, Gaudi::HistogramBase > RootHistCnvP1DCnv
Definition:
RHistogramCnv.cpp:16
RootHistCnv::RootHistCnvH3DCnv
RootHistCnv::RHistogramCnv< TH3D, TH3, Gaudi::HistogramBase > RootHistCnvH3DCnv
Definition:
RHistogramCnv.cpp:60
DECLARE_CONVERTER
#define DECLARE_CONVERTER(x)
Definition:
Converter.h:163
RootHistCnv::RHistogramCnv::classID
static const CLID & classID()
Inquire class type.
Definition:
RHistogramCnv.cpp:18
RootHistCnv::RHistogramCnv
Definition:
RHistogramCnv.h:41
RootHistCnv
Definition:
DirectoryCnv.h:27
CLID
unsigned int CLID
Class ID definition.
Definition:
ClassID.h:18
RootHistCnv::RootHistCnvP2DCnv
RHistogramCnv< TProfile2D, TProfile2D, Gaudi::HistogramBase > RootHistCnvP2DCnv
Definition:
RHistogramCnv.cpp:27
RootHistCnv::RootHistCnvH2DCnv
RHistogramCnv< TH2D, TH2, Gaudi::HistogramBase > RootHistCnvH2DCnv
Definition:
RHistogramCnv.cpp:49
RootHistCnv::RootHistCnvH1DCnv
RHistogramCnv< TH1D, TH1, Gaudi::HistogramBase > RootHistCnvH1DCnv
Definition:
RHistogramCnv.cpp:38
RHistogramCnv.h
RootHistCnv
src
RHistogramCnv.cpp
Generated on Mon Apr 7 2025 16:26:27 for The Gaudi Framework by
1.8.18