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
Reconstruction
Jet
JetUncertainties
Root
ELogMassUncertaintyComponent.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
JetUncertainties/ELogMassUncertaintyComponent.h
"
6
#include "
JetUncertainties/Helpers.h
"
7
8
namespace
jet
9
{
10
12
// //
13
// Constructor/destructor/initialization //
14
// //
16
17
ELogMassUncertaintyComponent::ELogMassUncertaintyComponent
(
const
std::string&
name
)
18
:
UncertaintyComponent
(
ComponentHelper
(
name
))
19
, m_massDef(CompMassDef::UNKNOWN)
20
{
21
JESUNC_NO_DEFAULT_CONSTRUCTOR
;
22
}
23
24
ELogMassUncertaintyComponent::ELogMassUncertaintyComponent
(
const
ComponentHelper
& component)
25
:
UncertaintyComponent
(component)
26
, m_massDef(component.massDef)
27
{
28
ATH_MSG_DEBUG
(Form(
"Creating ELogMassUncertaintyComponent named %s"
,
m_uncHistName
.Data()));
29
}
30
31
ELogMassUncertaintyComponent::ELogMassUncertaintyComponent
(
const
ELogMassUncertaintyComponent
& toCopy)
32
:
UncertaintyComponent
(toCopy)
33
, m_massDef(toCopy.m_massDef)
34
{
35
ATH_MSG_DEBUG
(Form(
"Creating copy of ELogMassUncertaintyComponent named %s"
,
m_uncHistName
.Data()));
36
}
37
38
ELogMassUncertaintyComponent
*
ELogMassUncertaintyComponent::clone
()
const
39
{
40
return
new
ELogMassUncertaintyComponent
(*
this
);
41
}
42
43
45
// //
46
// Validity and uncertainty retrieval //
47
// //
49
50
bool
ELogMassUncertaintyComponent::getValidityImpl
(
const
xAOD::Jet
&
jet
,
const
xAOD::EventInfo
&)
const
51
{
52
return
!
m_validHist
? true :
getValidBool
(
m_validHist
->
getValue
(
jet
.e()*
m_energyScale
,
log
(
getMassOverE
(
jet
,
m_massDef
))));
53
}
54
55
double
ELogMassUncertaintyComponent::getUncertaintyImpl
(
const
xAOD::Jet
&
jet
,
const
xAOD::EventInfo
&)
const
56
{
57
return
m_uncHist
->
getValue
(
jet
.e()*
m_energyScale
,
log
(
getMassOverE
(
jet
,
m_massDef
)));
58
}
59
60
}
// end jet namespace
61
jet::UncertaintyComponent::getMassOverE
virtual double getMassOverE(const xAOD::Jet &jet, const CompMassDef::TypeEnum massDef) const
Definition:
UncertaintyComponent.cxx:360
jet::UncertaintyComponent::m_energyScale
const float m_energyScale
Definition:
UncertaintyComponent.h:55
jet::ELogMassUncertaintyComponent::clone
virtual ELogMassUncertaintyComponent * clone() const
Definition:
ELogMassUncertaintyComponent.cxx:38
jet::ELogMassUncertaintyComponent::ELogMassUncertaintyComponent
ELogMassUncertaintyComponent(const ComponentHelper &component)
Definition:
ELogMassUncertaintyComponent.cxx:24
jet::ComponentHelper
Definition:
ConfigHelper.h:24
jet::UncertaintyComponent::m_uncHistName
const TString m_uncHistName
Definition:
UncertaintyComponent.h:51
jet::ELogMassUncertaintyComponent
Definition:
ELogMassUncertaintyComponent.h:14
jet::UncertaintyComponent::getValidBool
virtual bool getValidBool(const double validity) const
Definition:
UncertaintyComponent.cxx:301
jet::UncertaintyHistogram::getValue
double getValue(const double var1) const
Definition:
UncertaintyHistogram.cxx:141
Helpers.h
jet::UncertaintyComponent
Definition:
UncertaintyComponent.h:25
jet
Definition:
JetCalibTools_PlotJESFactors.cxx:23
jet::ELogMassUncertaintyComponent::m_massDef
const CompMassDef::TypeEnum m_massDef
Definition:
ELogMassUncertaintyComponent.h:30
jet::UncertaintyComponent::m_validHist
UncertaintyHistogram * m_validHist
Definition:
UncertaintyComponent.h:61
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition:
AthMsgStreamMacros.h:29
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
jet::ELogMassUncertaintyComponent::getValidityImpl
virtual bool getValidityImpl(const xAOD::Jet &jet, const xAOD::EventInfo &eInfo) const
Definition:
ELogMassUncertaintyComponent.cxx:50
xAOD::EventInfo_v1
Class describing the basic event information.
Definition:
EventInfo_v1.h:43
JESUNC_NO_DEFAULT_CONSTRUCTOR
#define JESUNC_NO_DEFAULT_CONSTRUCTOR
Definition:
Reconstruction/Jet/JetUncertainties/JetUncertainties/Helpers.h:24
xAOD::Jet_v1
Class describing a jet.
Definition:
Jet_v1.h:57
python.CaloCondTools.log
log
Definition:
CaloCondTools.py:20
jet::UncertaintyComponent::m_uncHist
UncertaintyHistogram * m_uncHist
Definition:
UncertaintyComponent.h:60
jet::ELogMassUncertaintyComponent::getUncertaintyImpl
virtual double getUncertaintyImpl(const xAOD::Jet &jet, const xAOD::EventInfo &eInfo) const
Definition:
ELogMassUncertaintyComponent.cxx:55
ELogMassUncertaintyComponent.h
Generated on Wed Apr 2 2025 21:10:19 for ATLAS Offline Software by
1.8.18