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
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
TrigHypothesis
TrigHLTJetHypo
src
TrigJetConditionConfig_signed_eta.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
#include "
TrigJetConditionConfig_signed_eta.h
"
6
7
#include "GaudiKernel/StatusCode.h"
8
#include "
./EtaConditionSigned.h
"
9
10
TrigJetConditionConfig_signed_eta::TrigJetConditionConfig_signed_eta
(
const
std::string&
type
,
11
const
std::string&
name
,
12
const
IInterface*
parent
) :
13
base_class(
type
,
name
,
parent
){
14
15
}
16
17
18
StatusCode
TrigJetConditionConfig_signed_eta::initialize
() {
19
CHECK
(
checkVals
());
20
return
StatusCode::SUCCESS;
21
}
22
23
24
Condition
TrigJetConditionConfig_signed_eta::getCondition
()
const
{
25
auto
a2d =
ArgStrToDouble
();
26
return
std::make_unique<EtaConditionSigned>(a2d(
m_min
), a2d(
m_max
));
27
}
28
29
30
StatusCode
TrigJetConditionConfig_signed_eta::checkVals
()
const
{
31
32
auto
a2d =
ArgStrToDouble
();
33
34
auto
min_val = a2d(
m_min
);
35
auto
max_val = a2d(
m_max
);
36
37
if
(min_val > max_val){
38
ATH_MSG_ERROR
(
" min eta > max eta: "
<< min_val <<
" "
<< max_val);
39
return
StatusCode::FAILURE;
40
}
41
return
StatusCode::SUCCESS;
42
}
TrigJetConditionConfig_signed_eta.h
ArgStrToDouble
Definition:
ArgStrToDouble.h:13
TrigJetConditionConfig_signed_eta::getCondition
virtual Condition getCondition() const override
Definition:
TrigJetConditionConfig_signed_eta.cxx:24
Condition
std::unique_ptr< ICondition > Condition
Definition:
ConditionsDefs.h:19
EtaConditionSigned.h
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition:
AthMsgStreamMacros.h:33
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition:
Control/AthenaKernel/AthenaKernel/errorcheck.h:422
TrigJetConditionConfig_signed_eta::TrigJetConditionConfig_signed_eta
TrigJetConditionConfig_signed_eta(const std::string &type, const std::string &name, const IInterface *parent)
Definition:
TrigJetConditionConfig_signed_eta.cxx:10
TrigJetConditionConfig_signed_eta::initialize
virtual StatusCode initialize() override
Definition:
TrigJetConditionConfig_signed_eta.cxx:18
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
TrigJetConditionConfig_signed_eta::m_max
Gaudi::Property< std::string > m_max
Definition:
TrigJetConditionConfig_signed_eta.h:31
TrigJetConditionConfig_signed_eta::checkVals
StatusCode checkVals() const
Definition:
TrigJetConditionConfig_signed_eta.cxx:30
TrigJetConditionConfig_signed_eta::m_min
Gaudi::Property< std::string > m_min
Definition:
TrigJetConditionConfig_signed_eta.h:28
Generated on Sat Apr 26 2025 21:21:51 for ATLAS Offline Software by
1.8.18