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
w
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
Database
AthenaRoot
RootAuxDynIO
src
RNTupleAuxDynStore.h
Go to the documentation of this file.
1
// This file is really -*- C++ -*-
2
3
/*
4
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef RNTUPLEAUXDYNSTORE_H
8
#define RNTUPLEAUXDYNSTORE_H
9
15
#include "
RootAuxDynStore.h
"
16
namespace
RootAuxDynIO
{
class
RNTupleAuxDynReader; }
17
18
class
RNTupleAuxDynStore
:
public
RootAuxDynStore
19
{
20
public
:
21
RNTupleAuxDynStore
(
RootAuxDynIO::RNTupleAuxDynReader
& aux_reader,
22
long
long
entry
,
bool
standalone
,
23
std::recursive_mutex* iomtx =
nullptr
);
24
25
virtual
~RNTupleAuxDynStore
() {}
26
27
protected
:
29
virtual
bool
readData
(
SG::auxid_t
auxid)
override
final
;
30
31
RootAuxDynIO::RNTupleAuxDynReader
&
m_reader
;
32
};
33
34
#endif
35
RootAuxDynIO::RNTupleAuxDynReader
Definition:
RNTupleAuxDynReader.h:31
RNTupleAuxDynStore::readData
virtual bool readData(SG::auxid_t auxid) override final
read data from ROOT and store it in m_vecs. Returns False on error
Definition:
RNTupleAuxDynStore.cxx:26
RNTupleAuxDynStore
Definition:
RNTupleAuxDynStore.h:19
RNTupleAuxDynStore::RNTupleAuxDynStore
RNTupleAuxDynStore(RootAuxDynIO::RNTupleAuxDynReader &aux_reader, long long entry, bool standalone, std::recursive_mutex *iomtx=nullptr)
Definition:
RNTupleAuxDynStore.cxx:17
RNTupleAuxDynStore::m_reader
RootAuxDynIO::RNTupleAuxDynReader & m_reader
Definition:
RNTupleAuxDynStore.h:31
SG::AuxStoreInternal::standalone
bool standalone() const
Return the standalone flag.
Definition:
AuxStoreInternal.cxx:67
RootAuxDynStore
Definition:
RootAuxDynStore.h:17
RootAuxDynStore.h
SG::auxid_t
size_t auxid_t
Identifier for a particular aux data item.
Definition:
AuxTypes.h:27
RNTupleAuxDynStore::~RNTupleAuxDynStore
virtual ~RNTupleAuxDynStore()
Definition:
RNTupleAuxDynStore.h:25
GetAllXsec.entry
list entry
Definition:
GetAllXsec.py:132
RootAuxDynIO
Specialization of RootAuxDynStore for reading Aux Dynamic attributes from RNTuple.
Definition:
RNTupleContainer.h:28
Generated on Fri May 30 2025 21:16:48 for ATLAS Offline Software by
1.8.18