Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
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
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
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
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
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
y
z
Enumerations
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
Enumerator
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
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File 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
l
m
n
o
p
q
r
s
t
u
v
w
x
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
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
z
Enumerator
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
Macros
_
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
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
PhysicsAnalysis
AnalysisCommon
HDF5Utils
HDF5Utils
MergeUtils.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef HDF5Utils_MergeUtils_H
6
#define HDF5Utils_MergeUtils_H
7
8
#include "H5Cpp.h"
9
#include <string>
10
17
namespace
H5Utils
{
25
bool
checkDatasetsToMerge
(
26
const
H5::DataSet&
target
,
27
const
H5::DataSet&
source
,
28
hsize_t mergeAxis);
29
39
bool
checkDatasetsToMerge
(
40
const
H5::DataSet&
target
,
41
const
H5::DataSet&
source
,
42
hsize_t mergeAxis,
43
std::string& errMsg);
44
58
void
mergeDatasets
(
59
H5::DataSet&
target
,
60
const
H5::DataSet&
source
,
61
hsize_t mergeAxis,
62
std::size_t
bufferSize
= -1);
63
76
H5::DataSet
createDataSet
(
77
H5::H5Location& targetLocation,
78
const
H5::DataSet&
source
,
79
hsize_t mergeAxis,
80
int
chunkSize = -1,
81
int
mergeExtent = -1);
82
93
std::size_t
getRowSize
(
const
H5::DataSet&
ds
, hsize_t
axis
);
94
95
}
//> end namespace H5Utils
96
97
#endif //> !HDF5Utils_MergeUtils_H
checkxAOD.ds
ds
Definition:
Tools/PyUtils/bin/checkxAOD.py:260
yodamerge_tmp.axis
list axis
Definition:
yodamerge_tmp.py:241
EFTrackingXrtAlgorithmConfig.bufferSize
bufferSize
Definition:
EFTrackingXrtAlgorithmConfig.py:77
H5Utils
HDF5 Tuple Writer.
Definition:
common.h:20
H5Utils::getRowSize
std::size_t getRowSize(const H5::DataSet &ds, hsize_t axis)
Calculate the size of a row of a dataset in bytes.
Definition:
MergeUtils.cxx:254
H5Utils::mergeDatasets
void mergeDatasets(H5::DataSet &target, const H5::DataSet &source, hsize_t mergeAxis, std::size_t bufferSize=-1)
Merge two datasets.
Definition:
MergeUtils.cxx:130
H5Utils::checkDatasetsToMerge
bool checkDatasetsToMerge(const H5::DataSet &target, const H5::DataSet &source, hsize_t mergeAxis)
Make sure that two datasets can be merged.
Definition:
MergeUtils.cxx:53
copySelective.target
string target
Definition:
copySelective.py:37
H5Utils::createDataSet
H5::DataSet createDataSet(H5::H5Location &targetLocation, const H5::DataSet &source, hsize_t mergeAxis, int chunkSize=-1, int mergeExtent=-1)
Make a new dataset using the properties of another.
Definition:
MergeUtils.cxx:222
copySelective.source
string source
Definition:
copySelective.py:32
Generated on Sun May 4 2025 21:13:37 for ATLAS Offline Software by
1.8.18