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
JetSelect.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
// JetSelect.h
5
// TopoCore
6
// Created by Veronica Sorin 14/8/14
7
8
#ifndef __TopoCore__JetSelect__
9
#define __TopoCore__JetSelect__
10
11
#include "
L1TopoInterfaces/SortingAlg.h
"
12
#include "
L1TopoEvent/TOBArray.h
"
13
#include "
L1TopoEvent/JetTOB.h
"
14
15
#include <iostream>
16
#include <vector>
17
18
namespace
TCS
{
19
20
class
JetSelect
:
public
SortingAlg
{
21
public
:
22
23
// constructor
24
JetSelect
(
const
std::string &
name
);
25
26
// destructor
27
virtual
~JetSelect
();
28
virtual
TCS::StatusCode
initialize
();
29
virtual
TCS::StatusCode
sort
(
const
InputTOBArray
& input,
TOBArray
& output);
30
31
private
:
32
33
parType_t
m_numberOfJets
= { 0 };
34
parType_t
m_minEta
= { 0 };
35
parType_t
m_maxEta
= { 0 };
36
parType_t
m_et
= { 0 };
37
parType_t
m_jsize
= { 0 };
38
parType_t
m_doEtaCut
= { 0 };
39
40
protected
:
41
42
JetTOB::JetSize
m_jetsize
;
43
44
};
45
46
}
// end of namespace TCS
47
48
#endif
/* defined(__TopoCore__SortingAlg__) */
TCS::JetTOB::JetSize
JetSize
Definition:
JetTOB.h:21
TCS::parType_t
uint32_t parType_t
Definition:
Parameter.h:22
TCS::JetSelect::m_jsize
parType_t m_jsize
Definition:
JetSelect.h:37
TCS::JetSelect::m_minEta
parType_t m_minEta
Definition:
JetSelect.h:34
TCS::JetSelect
Definition:
JetSelect.h:20
TCS::JetSelect::sort
virtual TCS::StatusCode sort(const InputTOBArray &input, TOBArray &output)
Definition:
JetSelect.cxx:52
TCS::JetSelect::m_doEtaCut
parType_t m_doEtaCut
Definition:
JetSelect.h:38
TCS::JetSelect::~JetSelect
virtual ~JetSelect()
Definition:
JetSelect.cxx:34
TCS::JetSelect::m_maxEta
parType_t m_maxEta
Definition:
JetSelect.h:35
TCS::JetSelect::initialize
virtual TCS::StatusCode initialize()
Definition:
JetSelect.cxx:38
TCS::ConfigurableAlg::name
const std::string & name() const
Definition:
ConfigurableAlg.h:48
TCS::InputTOBArray
Definition:
InputTOBArray.h:15
TOBArray.h
TCS::JetSelect::m_numberOfJets
parType_t m_numberOfJets
Definition:
JetSelect.h:33
TCS::TOBArray
Definition:
TOBArray.h:24
SortingAlg.h
TCS::JetSelect::JetSelect
JetSelect(const std::string &name)
Definition:
JetSelect.cxx:19
TCS::SortingAlg
Definition:
SortingAlg.h:18
TCS
Definition:
Global/GlobalSimulation/src/IO/Decision.h:18
TCS::JetSelect::m_jetsize
JetTOB::JetSize m_jetsize
Definition:
JetSelect.h:42
TCS::JetSelect::m_et
parType_t m_et
Definition:
JetSelect.h:36
JetTOB.h
TCS::StatusCode
Definition:
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:15
Generated on Sun May 4 2025 21:11:50 for ATLAS Offline Software by
1.8.18