ATLAS Offline Software
Loading...
Searching...
No Matches
Trigger
TrigT1
L1Topo
L1TopoAlgorithms
Root
jJetNoSort.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
// jJetNoSort.cxx
5
// TopoCore
6
// Algorithm to generate ALL lists of jJet TOBs
7
8
#include "
L1TopoAlgorithms/jJetNoSort.h
"
9
#include "
L1TopoEvent/TOBArray.h
"
10
#include "
L1TopoEvent/jJetTOBArray.h
"
11
#include "
L1TopoEvent/GenericTOB.h
"
12
#include <algorithm>
13
14
REGISTER_ALG_TCS
(jJetNoSort)
15
16
17
// constructor
18
TCS
::
jJetNoSort
::
jJetNoSort
(
const
std
::
string
&
name
) :
19
SortingAlg
(
name
)
20
{
21
defineParameter
(
"InputWidth"
, 64 );
// for FW
22
defineParameter
(
"OutputWidth"
, 64 );
23
defineParameter
(
"NumRegisters"
, 2);
// for FW
24
}
25
26
27
TCS::jJetNoSort::~jJetNoSort
()
28
{}
29
30
TCS::StatusCode
31
TCS::jJetNoSort::initialize
() {
32
m_numberOfjJets
=
parameter
(
"OutputWidth"
).value();
33
return
TCS::StatusCode::SUCCESS
;
34
}
35
36
37
38
39
TCS::StatusCode
40
TCS::jJetNoSort::sort
(
const
InputTOBArray
& input,
TOBArray
& output) {
41
const
jJetTOBArray
& jets =
dynamic_cast<
const
jJetTOBArray
&
>
(input);
42
43
// fill output array with GenericTOBs builds from jets
44
for
(
jJetTOBArray::const_iterator
jet
= jets.begin();
jet
!= jets.end(); ++
jet
) {
45
output.push_back(
GenericTOB
(**
jet
) );
46
}
47
48
49
// keep only max number of jets
50
int
par =
m_numberOfjJets
;
51
unsigned
int
maxNumberOfjJets = std::clamp(par, 0, std::abs(par));
52
if
(maxNumberOfjJets>0) {
53
while
( output.size()> maxNumberOfjJets ) {
54
output.pop_back();
55
}
56
}
57
return
TCS::StatusCode::SUCCESS
;
58
}
59
REGISTER_ALG_TCS
#define REGISTER_ALG_TCS(CLASS)
Definition
AlgFactory.h:62
GenericTOB.h
TOBArray.h
TCS::ConfigurableAlg::parameter
const Parameter & parameter(const std::string ¶meterName) const
Definition
ConfigurableAlg.cxx:243
TCS::ConfigurableAlg::name
const std::string & name() const
Definition
ConfigurableAlg.h:48
TCS::ConfigurableAlg::defineParameter
void defineParameter(const std::string &name, TCS::parType_t value)
Definition
ConfigurableAlg.cxx:201
TCS::DataArrayImpl< jJetTOB >::const_iterator
data_t::const_iterator const_iterator
Definition
DataArrayImpl.h:18
TCS::GenericTOB
Definition
GenericTOB.h:35
TCS::InputTOBArray
Definition
InputTOBArray.h:15
TCS::SortingAlg::SortingAlg
SortingAlg(const std::string &name)
Definition
SortingAlg.h:21
TCS::StatusCode
Definition
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:15
TCS::StatusCode::SUCCESS
@ SUCCESS
Definition
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:17
TCS::TOBArray
Definition
TOBArray.h:24
TCS::jJetNoSort::jJetNoSort
jJetNoSort(const std::string &name)
Definition
jJetNoSort.cxx:18
TCS::jJetNoSort::sort
virtual TCS::StatusCode sort(const InputTOBArray &input, TOBArray &output) override final
Definition
jJetNoSort.cxx:40
TCS::jJetNoSort::initialize
virtual TCS::StatusCode initialize() override
Definition
jJetNoSort.cxx:31
TCS::jJetNoSort::m_numberOfjJets
parType_t m_numberOfjJets
Definition
jJetNoSort.h:32
TCS::jJetNoSort::~jJetNoSort
virtual ~jJetNoSort()
Definition
jJetNoSort.cxx:27
TCS::jJetTOBArray
Definition
jJetTOBArray.h:19
jJetNoSort.h
jJetTOBArray.h
const
TCS
Definition
AnomalyDetectionBDT.h:16
jet
Definition
JetCalibTools_PlotJESFactors.cxx:23
std
STL namespace.
Generated on
for ATLAS Offline Software by
1.14.0