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
Control
DataModelTest
DataModelTestDataCommon
src
CLinksAOD.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
12
#include "
DataModelTestDataCommon/CLinksAOD.h
"
13
14
15
namespace
DMTest
{
16
17
18
const
std::vector<ElementLink<CVec> >&
CLinksAOD::vel
()
const
19
{
20
return
m_vel
;
21
}
22
23
24
void
CLinksAOD::setVel
(
const
std::vector<
ElementLink<CVec>
>& vel)
25
{
26
m_vel
=
vel
;
27
}
28
29
30
void
CLinksAOD::setVel
(std::vector<
ElementLink<CVec>
>&& vel)
31
{
32
m_vel
= std::move(
vel
);
33
}
34
35
36
const
ElementLinkVector<CVec>
&
CLinksAOD::elv
()
const
37
{
38
return
m_elv
;
39
}
40
41
42
ElementLinkVector<CVec>
&
CLinksAOD::elv
()
43
{
44
return
m_elv
;
45
}
46
47
48
void
CLinksAOD::setElv
(
const
ElementLinkVector<CVec>
& elv)
49
{
50
m_elv
=
elv
;
51
}
52
53
54
}
// namespace DMTest
CLinksAOD.h
For testing thinning of AOD objects.
DMTest::CLinksAOD::setElv
void setElv(const ElementLinkVector< CVec > &elv)
Definition:
CLinksAOD.cxx:48
ElementLinkVector
ElementLinkVector implementation for standalone ROOT.
Definition:
AthLinks/ElementLinkVector.h:65
DMTest::CLinksAOD::setVel
void setVel(const std::vector< ElementLink< CVec > > &vel)
Definition:
CLinksAOD.cxx:24
DMTest::CLinksAOD::m_vel
std::vector< ElementLink< CVec > > m_vel
Definition:
CLinksAOD.h:46
DMTest::CLinksAOD::elv
const ElementLinkVector< CVec > & elv() const
Definition:
CLinksAOD.cxx:36
ElementLink
ElementLink implementation for ROOT usage.
Definition:
AthLinks/ElementLink.h:123
DMTest::CLinksAOD::vel
const std::vector< ElementLink< CVec > > & vel() const
Definition:
CLinksAOD.cxx:18
DMTest::CLinksAOD::m_elv
ElementLinkVector< CVec > m_elv
Definition:
CLinksAOD.h:47
DMTest
Definition:
B.h:23
Generated on Tue Apr 1 2025 21:08:29 for ATLAS Offline Software by
1.8.18