ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
PhysicsAnalysis
Algorithms
MetAnalysisAlgorithms
MetAnalysisAlgorithms
MetSignificanceAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
7
8
9
#ifndef MET_ANALYSIS_ALGORITHMS__MET_SIGNIFICANCE_ALG_H
10
#define MET_ANALYSIS_ALGORITHMS__MET_SIGNIFICANCE_ALG_H
11
12
#include <
AnaAlgorithm/AnaAlgorithm.h
>
13
#include <
SystematicsHandles/SysCopyHandle.h
>
14
#include <
SystematicsHandles/SysListHandle.h
>
15
#include <
SystematicsHandles/SysWriteDecorHandle.h
>
16
#include <
METInterface/IMETSignificance.h
>
17
#include <
xAODMissingET/MissingETContainer.h
>
18
#include <
AsgTools/PropertyWrapper.h
>
19
20
namespace
CP
21
{
23
24
class
MetSignificanceAlg
final :
public
EL::AnaAlgorithm
25
{
27
public
:
28
using
EL::AnaAlgorithm::AnaAlgorithm
;
29
StatusCode
initialize
()
override
;
30
StatusCode
execute
(
const
EventContext& ctx)
override
;
31
32
33
35
private
:
36
ToolHandle<IMETSignificance>
m_significanceTool
{
this
,
"significanceTool"
,
"METMaker"
,
"the significance tool we apply"
};
37
39
private
:
40
SysListHandle
m_systematicsList
{
this
};
41
43
private
:
44
SysCopyHandle<xAOD::MissingETContainer>
m_metHandle
{
45
this
,
"met"
,
"MissingET_%SYS%"
,
"the met collection we run on"
};
46
48
private
:
49
Gaudi::Property<std::string>
m_totalMETName
{
this
,
"totalMETName"
,
"Final"
,
"the key for the final met term"
};
50
52
private
:
53
Gaudi::Property<std::string>
m_jetTermName
{
this
,
"jetTermName"
,
"RefJet"
,
"the key for the jets term"
};
54
56
private
:
57
Gaudi::Property<std::string>
m_softTermName
{
this
,
"softTermName"
,
"PVSoftTrk"
,
"the key for the soft term"
};
58
60
private
:
61
CP::SysWriteDecorHandle<float>
m_significanceDecorHandle
{
this
,
"significanceDecoration"
,
"significance_%SYS%"
,
"decoration name to use for the significance"
};
62
64
private
:
65
CP::SysWriteDecorHandle<float>
m_sigDirectionalDecorHandle
{
this
,
"sigDirectionalDecoration"
,
""
,
"decoration name to use for the directional significance"
};
66
68
private
:
69
CP::SysWriteDecorHandle<float>
m_metOverSqrtSumETDecorHandle
{
this
,
"METOverSqrtSumETDecoration"
,
""
,
"decoration name to use for METOverSqrtSumET"
};
70
72
private
:
73
CP::SysWriteDecorHandle<float>
m_metOverSqrtHTDecorHandle
{
this
,
"METOverSqrtHTDecoration"
,
""
,
"decoration name to use for METOverSqrtHT"
};
74
};
75
}
76
77
#endif
AnaAlgorithm.h
MissingETContainer.h
IMETSignificance.h
PropertyWrapper.h
SysCopyHandle.h
SysListHandle.h
SysWriteDecorHandle.h
CP::MetSignificanceAlg
an algorithm for calling IMETSignificanceTool
Definition
MetSignificanceAlg.h:25
CP::MetSignificanceAlg::m_significanceTool
ToolHandle< IMETSignificance > m_significanceTool
the smearing tool
Definition
MetSignificanceAlg.h:36
CP::MetSignificanceAlg::m_totalMETName
Gaudi::Property< std::string > m_totalMETName
the key for the final met term
Definition
MetSignificanceAlg.h:49
CP::MetSignificanceAlg::m_systematicsList
SysListHandle m_systematicsList
the systematics list we run
Definition
MetSignificanceAlg.h:40
CP::MetSignificanceAlg::m_sigDirectionalDecorHandle
CP::SysWriteDecorHandle< float > m_sigDirectionalDecorHandle
the decoration for the directional significance
Definition
MetSignificanceAlg.h:65
CP::MetSignificanceAlg::m_significanceDecorHandle
CP::SysWriteDecorHandle< float > m_significanceDecorHandle
the decoration for the significance
Definition
MetSignificanceAlg.h:61
CP::MetSignificanceAlg::m_softTermName
Gaudi::Property< std::string > m_softTermName
the key for the soft term
Definition
MetSignificanceAlg.h:57
CP::MetSignificanceAlg::m_metHandle
SysCopyHandle< xAOD::MissingETContainer > m_metHandle
the met collection we run on
Definition
MetSignificanceAlg.h:44
CP::MetSignificanceAlg::m_jetTermName
Gaudi::Property< std::string > m_jetTermName
the key for the jets term
Definition
MetSignificanceAlg.h:53
CP::MetSignificanceAlg::m_metOverSqrtHTDecorHandle
CP::SysWriteDecorHandle< float > m_metOverSqrtHTDecorHandle
the decoration for the METOverSqrtHT
Definition
MetSignificanceAlg.h:73
CP::MetSignificanceAlg::m_metOverSqrtSumETDecorHandle
CP::SysWriteDecorHandle< float > m_metOverSqrtSumETDecorHandle
the decoration for METOverSqrtSumET
Definition
MetSignificanceAlg.h:69
CP::MetSignificanceAlg::initialize
StatusCode initialize() override
Definition
MetSignificanceAlg.cxx:22
CP::SysCopyHandle
a systematics data handle that will either copy the input object or act like an update handle
Definition
SysCopyHandle.h:65
CP::SysListHandle
a class managing the property to configure the list of systematics to process
Definition
SysListHandle.h:33
CP::SysWriteDecorHandle
a data handle for reading systematics varied input data
Definition
SysWriteDecorHandle.h:42
EL::AnaAlgorithm
the (new) base class for EventLoop algorithms
Definition
AnaAlgorithm.h:74
EL::AnaAlgorithm::AnaAlgorithm
AnaAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
constructor with parameters
Definition
AnaAlgorithm.cxx:40
EL::AnaAlgorithm::execute
virtual::StatusCode execute()
execute this algorithm
Definition
AnaAlgorithm.cxx:315
CP
Select isolated Photons, Electrons and Muons.
Definition
Control/xAODRootAccess/xAODRootAccess/TEvent.h:27
Generated on
for ATLAS Offline Software by
1.17.0