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
Trigger
TrigEvent
TrigNavigation
TrigNavigation
TrigFeatureLink.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 TrigNavigation_TrigFeatureLink
6
#define TrigNavigation_TrigFeatureLink
7
#include <stdint.h>
8
9
#include "GaudiKernel/ClassID.h"
10
11
12
class
TrigFeatureLink
{
13
14
public
:
15
TrigFeatureLink
(
CLID
clid
,
uint16_t
subtype
,
uint32_t
index
);
16
TrigFeatureLink
();
17
bool
isValid
()
const
{
return
m_clid
!= 0; }
18
19
CLID
clid
()
const
{
return
m_clid
; }
20
uint16_t
subTypeIndex
()
const
{
return
m_subTypeIndex
; }
21
uint32_t
index
()
const
{
return
m_index
; }
22
23
private
:
24
25
CLID
m_clid
;
26
uint16_t
m_subTypeIndex
;
27
uint32_t
m_index
;
28
};
29
30
//TrigFeatureLink getFeatureLink( const TriggerElement* te, const std::string& label, const T* object, const C* container)
31
//const T* getFeature(TrigFeatureLink*)
32
33
34
#endif
TrigFeatureLink::TrigFeatureLink
TrigFeatureLink()
Definition:
TrigFeatureLink.cxx:13
xAOD::uint32_t
setEventNumber uint32_t
Definition:
EventInfo_v1.cxx:127
index
Definition:
index.py:1
TrigFeatureLink::isValid
bool isValid() const
Definition:
TrigFeatureLink.h:17
TrigFeatureLink::m_index
uint32_t m_index
Definition:
TrigFeatureLink.h:27
xAOD::uint16_t
setWord1 uint16_t
Definition:
eFexEMRoI_v1.cxx:93
TrigFeatureLink::subTypeIndex
uint16_t subTypeIndex() const
Definition:
TrigFeatureLink.h:20
TrigFeatureLink::index
uint32_t index() const
Definition:
TrigFeatureLink.h:21
CLID
uint32_t CLID
The Class ID type.
Definition:
Event/xAOD/xAODCore/xAODCore/ClassID_traits.h:47
TrigFeatureLink::m_subTypeIndex
uint16_t m_subTypeIndex
Definition:
TrigFeatureLink.h:26
TrigFeatureLink::m_clid
CLID m_clid
Definition:
TrigFeatureLink.h:25
TrigFeatureLink
Definition:
TrigFeatureLink.h:12
TrigFeatureLink::clid
CLID clid() const
Definition:
TrigFeatureLink.h:19
subproc.subtype
string subtype
Definition:
subproc.py:19
Generated on Mon Jan 13 2025 21:20:13 for ATLAS Offline Software by
1.8.18