ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
Trigger
TrigT1
L1Topo
L1TopoAlgorithms
Root
Ratio2.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
/*********************************
5
* Ratio2.cpp
6
* Created by Joerg Stelzer on 11/16/12.
7
*
8
* @brief algorithm calculates the phi-distance between one or two lists and applies delta-phi criteria
9
*
10
* @param NumberLeading
11
**********************************/
12
13
#include <cmath>
14
15
#include "
L1TopoAlgorithms/Ratio2.h
"
16
#include "
L1TopoCommon/Exception.h
"
17
#include "
L1TopoInterfaces/Decision.h
"
18
19
20
REGISTER_ALG_TCS
(Ratio2)
21
22
// not the best solution but we will move to athena where this comes for free
23
#define LOG std::cout << name() << ": "
24
25
26
TCS::Ratio2::Ratio2
(
const
std::string &
name
) :
DecisionAlg
(
name
)
27
{
28
defineParameter
(
"InputWidth1"
, 9);
29
defineParameter
(
"InputWidth2"
, 9);
30
defineParameter
(
"MaxTob1"
, 0);
31
defineParameter
(
"MaxTob2"
, 0);
32
defineParameter
(
"NumResultBits"
, 2);
33
defineParameter
(
"MinET1"
,0);
34
defineParameter
(
"MinET2"
,0);
35
defineParameter
(
"EtaMin"
,0);
36
defineParameter
(
"EtaMax"
,49);
37
defineParameter
(
"HT"
,0);
38
defineParameter
(
"Ratio2"
,0,0);
39
defineParameter
(
"Ratio2"
,0,1);
40
setNumberOutputBits
(2);
41
}
42
43
TCS::Ratio2::~Ratio2
()
44
{}
45
46
47
TCS::StatusCode
48
TCS::Ratio2::initialize
() {
49
p_MinET1
=
parameter
(
"MinET1"
).value();
50
p_MinET2
=
parameter
(
"MinET2"
).value();
51
p_EtaMin
=
parameter
(
"EtaMin"
).value();
52
p_EtaMax
=
parameter
(
"EtaMax"
).value();
53
p_HT
=
parameter
(
"HT"
).value();
54
TRG_MSG_INFO
(
"MinET1 : "
<<
p_MinET1
);
55
TRG_MSG_INFO
(
"MinET2 : "
<<
p_MinET2
);
56
TRG_MSG_INFO
(
"EtaMin : "
<<
p_EtaMin
);
57
TRG_MSG_INFO
(
"EtaMax : "
<<
p_EtaMax
);
58
TRG_MSG_INFO
(
"HT : "
<<
p_HT
);
59
60
for
(
int
i=0; i<2; ++i) {
61
p_Ratio2
[i] =
parameter
(
"Ratio2"
, i).value();
62
TRG_MSG_INFO
(
"Ratio2 "
<< i <<
" : "
<<
p_Ratio2
[i]);
63
}
64
TRG_MSG_INFO
(
"number output : "
<<
numberOutputBits
());
65
return
StatusCode::SUCCESS
;
66
}
67
68
TCS::StatusCode
69
TCS::Ratio2::processBitCorrect
(
const
std::vector<TCS::TOBArray const *> & input,
70
const
std::vector<TCS::TOBArray *> & output,
71
Decision
& decision )
72
73
{
74
return
process
(input,output,decision);
75
}
76
77
78
TCS::StatusCode
79
TCS::Ratio2::process
(
const
std::vector<TCS::TOBArray const *> & input,
80
const
std::vector<TCS::TOBArray *> & output,
81
Decision
& decision )
82
{
83
84
if
(input.size()!=2) {
85
TCS_EXCEPTION
(
"Ratio2 alg must have exactly 2 input lists, but got "
<< input.size());
86
}
87
88
unsigned
int
sumET = 0;
89
90
91
const
TCS::GenericTOB
&
met
= (*input[0])[0];
92
93
// loop over all jets
94
unsigned
int
objC(0);
95
for
(
TCS::GenericTOB
* tob : *input[1]) {
96
97
98
if
(
parType_t
(std::abs(tob->eta())) >
p_EtaMax
)
continue
;
// Eta cut
99
if
(
parType_t
(std::abs(tob->eta())) <
p_EtaMin
)
continue
;
// Eta cut
100
if
( tob->Et() <=
p_MinET2
)
continue
;
// E_T cut
101
102
TRG_MSG_DEBUG
(
"Jet : ET = "
<< tob->Et());
103
++objC;
104
sumET += tob->Et();
105
}
106
107
for
(
unsigned
int
i=0; i<
numberOutputBits
(); ++i) {
108
109
bool
accept = objC!=0 &&
met
.Et() >
p_MinET1
&& 10*(
met
.Et()*
met
.Et()) >=
p_Ratio2
[i]*sumET;
110
111
decision.
setBit
( i, accept );
112
113
if
(accept)
114
output[i]->push_back(
CompositeTOB
(
GenericTOB::createOnHeap
(
GenericTOB
(sumET,0,0) ) ));
115
116
TRG_MSG_DEBUG
(
"Decision "
<< i <<
": "
<< (accept?
"pass"
:
"fail"
) <<
" HT = "
<< sumET <<
" XE = "
<<
met
.Et() );
117
118
}
119
120
return
TCS::StatusCode::SUCCESS
;
121
}
REGISTER_ALG_TCS
#define REGISTER_ALG_TCS(CLASS)
Definition
AlgFactory.h:62
Decision.h
Ratio2.h
TRG_MSG_INFO
#define TRG_MSG_INFO(x)
Definition
Trigger/TrigConfiguration/TrigConfBase/TrigConfBase/MsgStreamMacros.h:27
TRG_MSG_DEBUG
#define TRG_MSG_DEBUG(x)
Definition
Trigger/TrigConfiguration/TrigConfBase/TrigConfBase/MsgStreamMacros.h:25
Exception.h
TCS_EXCEPTION
#define TCS_EXCEPTION(MSG)
Definition
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/Exception.h:15
TCS::CompositeTOB
Definition
CompositeTOB.h:16
TCS::ConfigurableAlg::name
const std::string & name() const
Definition
ConfigurableAlg.h:49
TCS::ConfigurableAlg::parameter
const Parameter & parameter(std::string_view parameterName) const
Definition
ConfigurableAlg.cxx:245
TCS::ConfigurableAlg::defineParameter
void defineParameter(std::string_view name, TCS::parType_t value)
Definition
ConfigurableAlg.cxx:203
TCS::DecisionAlg::setNumberOutputBits
void setNumberOutputBits(unsigned int numberOutputBits)
Definition
DecisionAlg.h:39
TCS::DecisionAlg::DecisionAlg
DecisionAlg(const std::string &name)
Definition
DecisionAlg.h:24
TCS::DecisionAlg::numberOutputBits
unsigned int numberOutputBits() const
Definition
DecisionAlg.h:38
TCS::Decision
Definition
Decision.h:19
TCS::Decision::setBit
void setBit(unsigned int index, bool value)
Definition
Decision.cxx:12
TCS::GenericTOB
Definition
GenericTOB.h:35
TCS::GenericTOB::createOnHeap
static GenericTOB * createOnHeap(const GenericTOB &)
Definition
GenericTOB.cxx:271
TCS::Ratio2::p_MinET2
parType_t p_MinET2
Definition
Ratio2.h:35
TCS::Ratio2::process
virtual StatusCode process(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison)
Definition
Ratio2.cxx:79
TCS::Ratio2::initialize
virtual StatusCode initialize()
Definition
Ratio2.cxx:48
TCS::Ratio2::p_EtaMin
parType_t p_EtaMin
Definition
Ratio2.h:36
TCS::Ratio2::p_EtaMax
parType_t p_EtaMax
Definition
Ratio2.h:37
TCS::Ratio2::p_Ratio2
parType_t p_Ratio2[2]
Definition
Ratio2.h:39
TCS::Ratio2::processBitCorrect
virtual StatusCode processBitCorrect(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison)
Definition
Ratio2.cxx:69
TCS::Ratio2::~Ratio2
virtual ~Ratio2()
Definition
Ratio2.cxx:43
TCS::Ratio2::p_HT
parType_t p_HT
Definition
Ratio2.h:38
TCS::Ratio2::p_MinET1
parType_t p_MinET1
Definition
Ratio2.h:34
TCS::Ratio2::Ratio2
Ratio2(const std::string &name)
Definition
Ratio2.cxx:26
TCS::StatusCode
Definition
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:15
TCS::StatusCode::SUCCESS
@ SUCCESS
Definition
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:17
process
const std::string process
Definition
fbtTestBasics.cxx:76
TCS::parType_t
uint32_t parType_t
Definition
Parameter.h:23
met
Definition
IMETSignificance.h:24
Generated on
for ATLAS Offline Software by
1.17.0