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
Reconstruction
RecTPCnv
src
MuonSpShowerContainer_p1.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
RecTPCnv/MuonSpShowerContainer_p1.h
"
6
#include <cstddef>
7
8
MuonSpShowerContainer_p1::MuonSpShowerContainer_p1
()
9
: m_ownshowers (false)
10
{
11
}
12
13
MuonSpShowerContainer_p1::MuonSpShowerContainer_p1
(
const
MuonSpShowerContainer_p1
&
other
)
14
: m_showers (
other
.m_showers),
15
m_ownshowers (false)
16
{
17
}
18
19
MuonSpShowerContainer_p1
&
20
MuonSpShowerContainer_p1::operator=
(
const
MuonSpShowerContainer_p1
&
other
)
21
{
22
if
(
this
!= &
other
) {
23
m_showers
=
other
.m_showers;
24
m_ownshowers
=
false
;
25
}
26
return
*
this
;
27
}
28
29
MuonSpShowerContainer_p1::~MuonSpShowerContainer_p1
()
30
{
31
if
(
m_ownshowers
) {
32
for
(
size_t
i
= 0;
i
<
m_showers
.size();
i
++)
33
delete
m_showers
[
i
];
34
}
35
}
MuonSpShowerContainer_p1
Persisent representation of the transient Rec::MuonSpShowerContainer class.
Definition:
MuonSpShowerContainer_p1.h:14
MuonSpShowerContainer_p1::m_ownshowers
bool m_ownshowers
Definition:
MuonSpShowerContainer_p1.h:28
MuonSpShowerContainer_p1::operator=
MuonSpShowerContainer_p1 & operator=(const MuonSpShowerContainer_p1 &)
Definition:
MuonSpShowerContainer_p1.cxx:20
lumiFormat.i
int i
Definition:
lumiFormat.py:85
MuonSpShowerContainer_p1.h
MuonSpShowerContainer_p1::m_showers
std::vector< MuonSpShower_p1 * > m_showers
Definition:
MuonSpShowerContainer_p1.h:27
InDetDD::other
@ other
Definition:
InDetDD_Defs.h:16
MuonSpShowerContainer_p1::MuonSpShowerContainer_p1
MuonSpShowerContainer_p1()
Default Constructor needed for persistency.
Definition:
MuonSpShowerContainer_p1.cxx:8
MuonSpShowerContainer_p1::~MuonSpShowerContainer_p1
virtual ~MuonSpShowerContainer_p1()
Destructor.
Definition:
MuonSpShowerContainer_p1.cxx:29
Generated on Sun Apr 27 2025 21:15:54 for ATLAS Offline Software by
1.8.18