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
w
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
PhysicsAnalysis
Interfaces
JetAnalysisInterfaces
JetAnalysisInterfaces
IJetCalibStep.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// IJetCalibStep.h
6
13
14
#ifndef JETANALYSISINTERFACES_IJETCALIBSTEP_H
15
#define JETANALYSISINTERFACES_IJETCALIBSTEP_H
16
17
#include "
AsgTools/IAsgTool.h
"
18
19
//EDM includes
20
#include "
xAODJet/JetContainer.h
"
21
22
23
namespace
JetHelper
{
24
class
JetContext;
25
}
26
27
class
IJetCalibStep
:
virtual
public
asg::IAsgTool
{
28
29
ASG_TOOL_INTERFACE
(
IJetCalibStep
)
30
31
public
:
32
33
35
virtual
StatusCode
calibrate
(
xAOD::JetContainer
&
jets
)
const
= 0;
36
37
// // Get the nominal resolution
38
virtual
StatusCode
getNominalResolutionData
(
const
xAOD::Jet
&,
const
JetHelper::JetContext
&,
double
&)
const
{
return
StatusCode::FAILURE; }
39
virtual
StatusCode
getNominalResolutionMC
(
const
xAOD::Jet
&,
const
JetHelper::JetContext
&,
double
&)
const
{
return
StatusCode::FAILURE; }
40
41
};
42
43
#endif
IJetCalibStep::getNominalResolutionMC
virtual StatusCode getNominalResolutionMC(const xAOD::Jet &, const JetHelper::JetContext &, double &) const
Definition:
IJetCalibStep.h:39
JetHelper::JetContext
Class JetContext Designed to read AOD information related to the event, N vertices,...
Definition:
JetContext.h:24
asg::IAsgTool
Base class for the dual-use tool interface classes.
Definition:
IAsgTool.h:41
defineDB.jets
jets
Definition:
JetTagCalibration/share/defineDB.py:24
JetHelper
class IJetCalibStep
Definition:
IInputVariable.h:18
IJetCalibStep::getNominalResolutionData
virtual StatusCode getNominalResolutionData(const xAOD::Jet &, const JetHelper::JetContext &, double &) const
Definition:
IJetCalibStep.h:38
IJetCalibStep::calibrate
virtual StatusCode calibrate(xAOD::JetContainer &jets) const =0
Apply calibration to a jet container.
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ASG_TOOL_INTERFACE
#define ASG_TOOL_INTERFACE(CLASSNAME)
Definition:
AsgToolMacros.h:40
IAsgTool.h
DataVector
Derived DataVector<T>.
Definition:
DataVector.h:794
IJetCalibStep
Definition:
IJetCalibStep.h:27
xAOD::Jet_v1
Class describing a jet.
Definition:
Jet_v1.h:57
JetContainer.h
Generated on Sat May 10 2025 21:10:48 for ATLAS Offline Software by
1.8.18