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
TrigT1
L1Topo
L1TopoAlgorithms
L1TopoAlgorithms
METSortingAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
// METSortingAlg.h
5
// TopoCore
6
// Created by Joerg Stelzer on 11/10/12.
7
8
#ifndef TCS__METSortingAlg
9
#define TCS__METSortingAlg
10
11
#include "
L1TopoInterfaces/SortingAlg.h
"
12
#include "
L1TopoEvent/TOBArray.h
"
13
14
#include <iostream>
15
#include <vector>
16
17
namespace
TCS
{
18
19
class
METSortingAlg
:
public
SortingAlg
{
20
public
:
21
22
// constructor
23
METSortingAlg
(
const
std::string &
name
);
24
25
// destructor
26
virtual
~METSortingAlg
();
27
28
virtual
StatusCode
initialize
();
29
30
virtual
TCS::StatusCode
sort
(
const
InputTOBArray
&
input
,
TOBArray
&
output
);
31
32
private
:
33
34
parType_t
p_MinEta
= { 0 };
35
parType_t
p_MaxEta
= { 31 };
36
37
};
38
39
}
// end of namespace TCS
40
41
#endif
/* defined(__TopoCore__SortingAlg__) */
TCS::parType_t
uint32_t parType_t
Definition:
Parameter.h:22
TCS::METSortingAlg::initialize
virtual StatusCode initialize()
Definition:
METSortingAlg.cxx:31
TCS::METSortingAlg::METSortingAlg
METSortingAlg(const std::string &name)
Definition:
METSortingAlg.cxx:21
TCS::METSortingAlg::p_MinEta
parType_t p_MinEta
Definition:
METSortingAlg.h:34
TCS::ConfigurableAlg::name
const std::string & name() const
Definition:
ConfigurableAlg.h:48
TCS::InputTOBArray
Definition:
InputTOBArray.h:15
PlotPulseshapeFromCool.input
input
Definition:
PlotPulseshapeFromCool.py:106
TOBArray.h
TCS::TOBArray
Definition:
TOBArray.h:24
TCS::METSortingAlg
Definition:
METSortingAlg.h:19
merge.output
output
Definition:
merge.py:17
SortingAlg.h
TCS::SortingAlg
Definition:
SortingAlg.h:18
TCS::METSortingAlg::~METSortingAlg
virtual ~METSortingAlg()
Definition:
METSortingAlg.cxx:27
TCS
Definition:
Global/GlobalSimulation/src/IO/Decision.h:18
TCS::METSortingAlg::p_MaxEta
parType_t p_MaxEta
Definition:
METSortingAlg.h:35
TCS::METSortingAlg::sort
virtual TCS::StatusCode sort(const InputTOBArray &input, TOBArray &output)
Definition:
METSortingAlg.cxx:38
TCS::StatusCode
Definition:
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:15
Generated on Sun Jan 12 2025 21:14:17 for ATLAS Offline Software by
1.8.18