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
Tracking
TrkDetDescr
TrkVolumes
src
VolumeExcluder.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// VolumeExcluder.cxx, (c) ATLAS Detector software
8
9
// Trk
10
#include "
TrkVolumes/VolumeExcluder.h
"
11
// Gaudi
12
#include "GaudiKernel/MsgStream.h"
13
14
15
// constructor with volume
16
Trk::VolumeExcluder::VolumeExcluder
(std::unique_ptr<Trk::Volume> vol)
17
: m_vol(std::move(vol))
18
{}
19
20
// copy constructor
21
Trk::VolumeExcluder::VolumeExcluder
(
const
VolumeExcluder
& ex)
22
:
Trk
::
AreaExcluder
(ex)
23
, m_vol{ex.
m_vol
->clone()}
24
{}
25
27
Trk::VolumeExcluder
&
28
Trk::VolumeExcluder::operator=
(
const
VolumeExcluder
& vol)
29
{
30
if
(&vol !=
this
) {
31
AreaExcluder::operator=
(vol);
32
m_vol.reset(vol.
m_vol
->clone());
33
}
34
return
*
this
;
35
}
36
37
Trk::VolumeExcluder
*
38
Trk::VolumeExcluder::clone
()
const
39
{
40
return
new
Trk::VolumeExcluder
(*
this
);
41
}
42
Trk::VolumeExcluder::clone
VolumeExcluder * clone() const
Polymorphic constructor.
Definition:
VolumeExcluder.cxx:38
Trk::VolumeExcluder::operator=
VolumeExcluder & operator=(VolumeExcluder &&)=default
VolumeExcluder.h
Trk::AreaExcluder::operator=
AreaExcluder & operator=(const AreaExcluder &)=default
Trk::VolumeExcluder::VolumeExcluder
VolumeExcluder()
Defaults.
Trk::AreaExcluder
Definition:
AreaExcluder.h:26
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
Trk::VolumeExcluder::m_vol
std::unique_ptr< Volume > m_vol
Definition:
VolumeExcluder.h:61
Trk::VolumeExcluder
Definition:
VolumeExcluder.h:30
Generated on Fri May 30 2025 21:22:19 for ATLAS Offline Software by
1.8.18