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
Tracking
TrkTools
TrkToolInterfaces
TrkToolInterfaces
IIsoTrackSelectorTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TrkToolInterfaces_IIsoTrackSelectorTool_H
6
#define TrkToolInterfaces_IIsoTrackSelectorTool_H
7
8
#include "GaudiKernel/IAlgTool.h"
9
#include "
TrkParameters/TrackParameters.h
"
10
11
12
namespace
Trk
13
{
14
15
class
Track
;
16
class
TrackParticleBase;
17
18
static
const
InterfaceID IID_IIsoTrackSelectorTool(
"Trk::IIsoTrackSelectorTool"
, 1, 0);
19
28
class
IIsoTrackSelectorTool
:
virtual
public
IAlgTool
29
{
30
public
:
31
32
static
const
InterfaceID&
interfaceID
() {
return
IID_IIsoTrackSelectorTool; }
33
35
virtual
bool
decision
(
const
Trk::AtaStraightLine
&,
const
Trk::Track
& track)
const
= 0;
36
38
virtual
bool
decision
(
const
Trk::AtaStraightLine
&,
const
Trk::TrackParticleBase
& trackParticle)
const
= 0;
39
41
virtual
bool
decision
(
const
Trk::AtaStraightLine
&,
const
Trk::TrackParameters
& trackPars)
const
= 0;
42
43
44
};
//end of class definitions
45
}
//end of namespace definitions
46
47
48
#endif
Trk::IIsoTrackSelectorTool::decision
virtual bool decision(const Trk::AtaStraightLine &, const Trk::TrackParticleBase &trackParticle) const =0
AOD type interface.
TrackParameters.h
Trk::Track
The ATLAS Track class.
Definition:
Tracking/TrkEvent/TrkTrack/TrkTrack/Track.h:73
Trk::ParametersT
Dummy class used to allow special convertors to be called for surfaces owned by a detector element.
Definition:
EMErrorDetail.h:25
Trk::IIsoTrackSelectorTool::decision
virtual bool decision(const Trk::AtaStraightLine &, const Trk::TrackParameters &trackPars) const =0
Work-horse interface.
Trk::IIsoTrackSelectorTool
The abstract interface base class for track selector tools targeted at isoloation.
Definition:
IIsoTrackSelectorTool.h:29
Trk::IIsoTrackSelectorTool::interfaceID
static const InterfaceID & interfaceID()
Definition:
IIsoTrackSelectorTool.h:32
Trk::TrackParticleBase
Definition:
TrackParticleBase.h:41
Trk::ParametersBase
Definition:
ParametersBase.h:55
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
Trk::IIsoTrackSelectorTool::decision
virtual bool decision(const Trk::AtaStraightLine &, const Trk::Track &track) const =0
ESD type interface.
Track
Definition:
TriggerChamberClusterOnTrackCreator.h:21
Generated on Tue Mar 25 2025 21:11:46 for ATLAS Offline Software by
1.8.18