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
Event
xAOD
xAODJetAthenaPool
src
xAODJetTrigAuxContainerCnv.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// $Id: xAODJetAuxContainerCnv.cxx 588765 2014-03-21 13:30:28Z delsart $
6
7
#if !(defined(GENERATIONBASE) || defined(SIMULATIONBASE))
8
9
// Local include(s):
10
#include "
xAODJetTrigAuxContainerCnv.h
"
11
#include "
xAODJetTrigAuxContainerCnv_v1.h
"
12
13
#include <TClass.h>
14
#include <mutex>
15
16
#define LOAD_DICTIONARY( name ) do { TClass* cl = TClass::GetClass( name ); \
17
if( ( ! cl ) || ( ! cl->IsLoaded() ) ) { ATH_MSG_ERROR( "Couldn't load dictionary for type: " << name ); } } while(0)
18
19
20
xAOD::JetTrigAuxContainer
*
21
xAODJetTrigAuxContainerCnv::
22
createPersistentWithKey
(
xAOD::JetTrigAuxContainer
* trans,
23
const
std::string&
key
)
24
{
25
// ??? Still needed?
26
std::once_flag
flag
;
27
std::call_once (
flag
,
28
[
this
] {
29
LOAD_DICTIONARY
(
"ElementLink<DataVector<xAOD::MuonSegment_v1> >"
);
30
LOAD_DICTIONARY
(
"std::vector<ElementLink<DataVector<xAOD::MuonSegment_v1> > >"
);
31
LOAD_DICTIONARY
(
"std::vector<std::vector<ElementLink<DataVector<xAOD::MuonSegment_v1> > > >"
);
32
LOAD_DICTIONARY
(
"std::vector<ElementLink<DataVector<xAOD::BTagging_v1> > >"
);
33
});
34
35
// Create a copy of the container:
36
return
xAODJetTrigAuxContainerCnvBase::createPersistentWithKey
(trans,
key
);
37
}
38
39
40
#endif // NOT SIMULATIONBASE OR GENERATIONBASE
xAODJetTrigAuxContainerCnv::createPersistentWithKey
virtual xAOD::JetTrigAuxContainer * createPersistentWithKey(xAOD::JetTrigAuxContainer *trans, const std::string &key)
Function preparing the container to be written out.
Definition:
xAODJetTrigAuxContainerCnv.cxx:22
xAOD::JetTrigAuxContainer_v2
Temporary container used until we have I/O for AuxStoreInternal.
Definition:
JetTrigAuxContainer_v2.h:36
xAODJetTrigAuxContainerCnv.h
master.flag
bool flag
Definition:
master.py:29
T_AthenaPoolAuxContainerCnv::createPersistentWithKey
virtual AUXSTORE * createPersistentWithKey(AUXSTORE *trans, const std::string &key) override
Convert a transient object to persistent form.
LOAD_DICTIONARY
#define LOAD_DICTIONARY(name)
Definition:
xAODJetTrigAuxContainerCnv.cxx:16
xAODJetTrigAuxContainerCnv_v1.h
mapkey::key
key
Definition:
TElectronEfficiencyCorrectionTool.cxx:37
Generated on Sun Apr 6 2025 21:23:32 for ATLAS Offline Software by
1.8.18