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
xAODMuonAthenaPool
src
xAODMuonAuxContainerCnv_v3.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// System include(s):
6
#include <stdexcept>
7
8
// Gaudi/Athena include(s):
9
#include "GaudiKernel/MsgStream.h"
10
11
// Core EDM include(s):
12
#include "
AthContainers/tools/copyAuxStoreThinned.h
"
13
14
// Local include(s):
15
#include "
xAODMuonAuxContainerCnv_v3.h
"
16
#include "
xAODMuon/MuonContainer.h
"
17
#include "
xAODMuon/versions/MuonContainer_v1.h
"
18
19
20
xAODMuonAuxContainerCnv_v3::xAODMuonAuxContainerCnv_v3
()
21
{
22
}
23
24
void
xAODMuonAuxContainerCnv_v3::
25
persToTrans
(
const
xAOD::MuonAuxContainer_v3
* oldObj,
26
xAOD::MuonAuxContainer
* newObj,
27
MsgStream&
/*log*/
)
const
{
28
29
// Clear the transient object:
30
newObj->
resize
( 0 );
31
32
// Copy the payload of the v1 object into the latest one by misusing
33
// the thinning code a bit...
34
SG::copyAuxStoreThinned
( *oldObj, *newObj,
nullptr
);
35
36
return
;
37
}
38
42
void
xAODMuonAuxContainerCnv_v3::
43
transToPers
(
const
xAOD::MuonAuxContainer
*,
44
xAOD::MuonAuxContainer_v3
*,
45
MsgStream&
log
)
const
{
46
47
log
<< MSG::ERROR
48
<<
"Somebody called xAODMuonAuxContainerCnv_v3::transToPers"
49
<<
endmsg
;
50
throw
std::runtime_error(
"Somebody called xAODMuonAuxContainerCnv_v3::"
51
"transToPers"
);
52
53
return
;
54
}
SG::copyAuxStoreThinned
void copyAuxStoreThinned(const SG::IConstAuxStore &orig, SG::IAuxStore ©, const SG::ThinningInfo *info)
Helper to copy an aux store while applying thinning.
xAODMuonAuxContainerCnv_v3::persToTrans
virtual void persToTrans(const xAOD::MuonAuxContainer_v3 *oldObj, xAOD::MuonAuxContainer *newObj, MsgStream &log) const override
Function converting from the old type to the current one.
Definition:
xAODMuonAuxContainerCnv_v3.cxx:25
xAODMuonAuxContainerCnv_v3::transToPers
virtual void transToPers(const xAOD::MuonAuxContainer *, xAOD::MuonAuxContainer_v3 *, MsgStream &log) const override
Dummy function inherited from the base class.
Definition:
xAODMuonAuxContainerCnv_v3.cxx:43
xAOD::AuxContainerBase::resize
virtual bool resize(size_t size) override
Resize the arrays to a given size.
Definition:
AuxContainerBase.cxx:507
xAOD::MuonAuxContainer_v5
Temporary container used until we have I/O for AuxStoreInternal.
Definition:
MuonAuxContainer_v5.h:31
copyAuxStoreThinned.h
Helper to copy an aux store while applying thinning.
xAODMuonAuxContainerCnv_v3::xAODMuonAuxContainerCnv_v3
xAODMuonAuxContainerCnv_v3()
Default constructor.
Definition:
xAODMuonAuxContainerCnv_v3.cxx:20
endmsg
#define endmsg
Definition:
AnalysisConfig_Ntuple.cxx:63
MuonContainer_v1.h
xAODMuonAuxContainerCnv_v3.h
MuonContainer.h
xAOD::MuonAuxContainer_v3
Temporary container used until we have I/O for AuxStoreInternal.
Definition:
MuonAuxContainer_v3.h:31
python.CaloCondTools.log
log
Definition:
CaloCondTools.py:20
Generated on Sun Apr 6 2025 21:23:34 for ATLAS Offline Software by
1.8.18