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
Trigger
TrigT1
L1Topo
L1TopoAlgorithms
L1TopoAlgorithms
ExclusiveJets.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
// ExclusiveJets.h
5
// TopoCore
6
// Created by Carlos Moreno based on InvariantMassInclusive1 by Joerg Stelzer on 11/16/12.
7
#ifndef __TopoCore__ExclusiveJets__
8
#define __TopoCore__ExclusiveJets__
9
#include <iostream>
10
#include "
L1TopoInterfaces/DecisionAlg.h
"
11
namespace
TCS
{
12
13
class
ExclusiveJets
:
public
DecisionAlg
{
14
public
:
15
ExclusiveJets
(
const
std::string &
name
);
16
virtual
~ExclusiveJets
();
17
virtual
StatusCode
initialize
()
override
final
;
18
virtual
StatusCode
processBitCorrect
(
const
std::vector<TCS::TOBArray const *> & input,
19
const
std::vector<TCS::TOBArray *> & output,
20
Decision
& decison )
override
final
;
21
22
virtual
StatusCode
process
(
const
std::vector<TCS::TOBArray const *> & input,
23
const
std::vector<TCS::TOBArray *> & output,
24
Decision
& decison )
override
final
;
25
26
private
:
27
parType_t
p_NumberLeading1
= { 0 };
28
parType_t
p_PtScale
= { 0 };
29
parType_t
p_PtShift
= { 0 };
30
parType_t
p_MinET1
[6] = { 0,0,0,0,0,0 };
31
parType_t
p_XiMin
[6] = { 0,0,0,0,0,0 };
32
parType_t
p_XiMax
[6] = { 0,0,0,0,0,0 };
33
parType_t
p_ApplyEtaCut
[6] = { 0,0,0,0,0,0 };
34
parType_t
p_MinEta1
[6] = { 0,0,0,0,0,0 };
35
parType_t
p_MaxEta1
[6] = { 0,0,0,0,0,0 };
36
parType_t
p_MinEta2
[6] = { 0,0,0,0,0,0 };
37
parType_t
p_MaxEta2
[6] = { 0,0,0,0,0,0 };
38
39
};
40
41
}
42
#endif
TCS::ExclusiveJets::p_MinEta1
parType_t p_MinEta1[6]
Definition:
ExclusiveJets.h:34
TCS::ExclusiveJets::p_XiMin
parType_t p_XiMin[6]
Definition:
ExclusiveJets.h:31
TCS::parType_t
uint32_t parType_t
Definition:
Parameter.h:22
TCS::ExclusiveJets::p_XiMax
parType_t p_XiMax[6]
Definition:
ExclusiveJets.h:32
TCS::ExclusiveJets::p_MinET1
parType_t p_MinET1[6]
Definition:
ExclusiveJets.h:30
TCS::ExclusiveJets::p_NumberLeading1
parType_t p_NumberLeading1
Definition:
ExclusiveJets.h:27
TCS::ExclusiveJets::p_PtShift
parType_t p_PtShift
Definition:
ExclusiveJets.h:29
TCS::DecisionAlg
Definition:
Trigger/TrigT1/L1Topo/L1TopoInterfaces/L1TopoInterfaces/DecisionAlg.h:22
TCS::ExclusiveJets::~ExclusiveJets
virtual ~ExclusiveJets()
Definition:
ExclusiveJets.cxx:48
TCS::ConfigurableAlg::name
const std::string & name() const
Definition:
ConfigurableAlg.h:48
TCS::ExclusiveJets::initialize
virtual StatusCode initialize() override final
Definition:
ExclusiveJets.cxx:50
TCS::ExclusiveJets::p_PtScale
parType_t p_PtScale
Definition:
ExclusiveJets.h:28
TCS::ExclusiveJets::p_MaxEta1
parType_t p_MaxEta1[6]
Definition:
ExclusiveJets.h:35
TCS::Decision
Definition:
L1Topo/L1TopoInterfaces/L1TopoInterfaces/Decision.h:19
DecisionAlg.h
TCS::ExclusiveJets::ExclusiveJets
ExclusiveJets(const std::string &name)
Definition:
ExclusiveJets.cxx:27
TCS::ExclusiveJets::p_ApplyEtaCut
parType_t p_ApplyEtaCut[6]
Definition:
ExclusiveJets.h:33
TCS::ExclusiveJets::p_MinEta2
parType_t p_MinEta2[6]
Definition:
ExclusiveJets.h:36
TCS
Definition:
Global/GlobalSimulation/src/IO/Decision.h:18
TCS::ExclusiveJets::p_MaxEta2
parType_t p_MaxEta2[6]
Definition:
ExclusiveJets.h:37
TCS::ExclusiveJets
Definition:
ExclusiveJets.h:13
TCS::ExclusiveJets::processBitCorrect
virtual StatusCode processBitCorrect(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison) override final
Definition:
ExclusiveJets.cxx:107
TCS::ExclusiveJets::process
virtual StatusCode process(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison) override final
Definition:
ExclusiveJets.cxx:167
TCS::StatusCode
Definition:
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:15
Generated on Thu May 8 2025 21:09:38 for ATLAS Offline Software by
1.8.18