ATLAS Offline Software
Loading...
Searching...
No Matches
jJetSort.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4// jJetSort.cxx
5// TopoCore
6// algorithm to make sorted jJets lists
7//
12#include <algorithm>
13
14REGISTER_ALG_TCS(jJetSort)
15
16bool SortByEtLargestjJet(TCS::GenericTOB* tob1, TCS::GenericTOB* tob2)
17{
18 return tob1->Et() > tob2->Et();
19}
20
21// constructor
22TCS::jJetSort::jJetSort(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
48TCS::jJetSort::sort(const InputTOBArray & input, TOBArray & output) {
49
50 const jJetTOBArray & jets = dynamic_cast<const jJetTOBArray&>(input);
51
52 // fill output array with GenericTOBs builds from jets
53 for(jJetTOBArray::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(SortByEtLargestjJet);
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_maxEta
Definition jJetSort.h:33
parType_t m_numberOfJets
Definition jJetSort.h:31
virtual TCS::StatusCode sort(const InputTOBArray &input, TOBArray &output) override final
Definition jJetSort.cxx:48
parType_t m_minEta
Definition jJetSort.h:32
virtual TCS::StatusCode initialize() override
Definition jJetSort.cxx:39
virtual ~jJetSort()
Definition jJetSort.cxx:33
jJetSort(const std::string &name)
Definition jJetSort.cxx:22
bool SortByEtLargestjJet(TCS::GenericTOB *tob1, TCS::GenericTOB *tob2)
Definition jJetSort.cxx:16
uint32_t parType_t
Definition Parameter.h:22