ATLAS Offline Software
Loading...
Searching...
No Matches
jLJetSort.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4// jLJetSort.cxx
5// TopoCore
6// algorithm to make sorted jLJets lists
7//
12#include <algorithm>
13
14REGISTER_ALG_TCS(jLJetSort)
15
16bool SortByEtLargestjLJet(TCS::GenericTOB* tob1, TCS::GenericTOB* tob2)
17{
18 return tob1->Et() > tob2->Et();
19}
20
21// constructor
22TCS::jLJetSort::jLJetSort(const std::string & name) :
24{
25 defineParameter( "InputWidth", 64 ); // for FW
26 defineParameter( "InputWidth1stStage", 16 ); // for FW
27 defineParameter( "OutputWidth", 10 );
28 defineParameter( "MinEta", 0 );
29 defineParameter( "MaxEta", 196 );
30}
31
32
35
36
37
40 m_numberOfJets = parameter("OutputWidth").value();
41 m_minEta = parameter("MinEta").value();
42 m_maxEta = parameter("MaxEta").value();
44}
45
46
49
50 const jLJetTOBArray & jets = dynamic_cast<const jLJetTOBArray&>(input);
51
52 // fill output array with GenericTOBs builds from jets
53 for(jLJetTOBArray::const_iterator jet = jets.begin(); jet!= jets.end(); ++jet ) {
54 if ( parType_t(std::abs((*jet)-> eta())) < m_minEta) continue;
55 if ( parType_t(std::abs((*jet)-> eta())) > m_maxEta) continue;
56 output.push_back( GenericTOB(**jet) );
57 }
58
59 // sort
60 output.sort(SortByEtLargestjLJet);
61
62 // keep only max number of jets
63 int par = m_numberOfJets;
64 unsigned int maxNumberOfJets = std::clamp(par, 0, std::abs(par));
65 if(maxNumberOfJets>0) {
66 while( output.size()> maxNumberOfJets ) {
67 if (output.size() == (maxNumberOfJets+1)) {
68 bool isAmbiguous = output[maxNumberOfJets-1].EtDouble() == output[maxNumberOfJets].EtDouble();
69 if (isAmbiguous) { output.setAmbiguityFlag(true); }
70 }
71 output.pop_back();
72 }
73 }
75}
76
#define REGISTER_ALG_TCS(CLASS)
Definition AlgFactory.h:62
Scalar eta() const
pseudorapidity method
const Parameter & parameter(const std::string &parameterName) const
const std::string & name() const
void defineParameter(const std::string &name, TCS::parType_t value)
data_t::const_iterator const_iterator
SortingAlg(const std::string &name)
Definition SortingAlg.h:21
parType_t m_numberOfJets
Definition jLJetSort.h:31
parType_t m_maxEta
Definition jLJetSort.h:33
virtual TCS::StatusCode sort(const InputTOBArray &input, TOBArray &output) override final
Definition jLJetSort.cxx:48
virtual ~jLJetSort()
Definition jLJetSort.cxx:33
parType_t m_minEta
Definition jLJetSort.h:32
jLJetSort(const std::string &name)
Definition jLJetSort.cxx:22
virtual TCS::StatusCode initialize() override
Definition jLJetSort.cxx:39
bool SortByEtLargestjLJet(TCS::GenericTOB *tob1, TCS::GenericTOB *tob2)
Definition jLJetSort.cxx:16
uint32_t parType_t
Definition Parameter.h:22