ATLAS Offline Software
JetCalibrationAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 
8 #ifndef JET_ANALYSIS_ALGORITHMS__JET_CALIBRATION_ALG_H
9 #define JET_ANALYSIS_ALGORITHMS__JET_CALIBRATION_ALG_H
10 
15 
16 namespace CP
17 {
19 
20  class JetCalibrationAlg final : public EL::AnaAlgorithm
21  {
23  public:
25  StatusCode initialize () override;
26  StatusCode execute () override;
27 
28 
29 
31  private:
32  ToolHandle<IJetCalibrationTool> m_calibrationTool {this, "calibrationTool", "JetCalibrationTool", "the calibration tool we apply"};
33 
35  private:
37 
39  private:
41  this, "jets", "", "the jet collection to run on"};
42  };
43 }
44 
45 #endif
CP::SysListHandle
a class managing the property to configure the list of systematics to process
Definition: SysListHandle.h:33
SysListHandle.h
SysCopyHandle.h
CP::JetCalibrationAlg::initialize
StatusCode initialize() override
Definition: JetCalibrationAlg.cxx:22
CP::JetCalibrationAlg::m_systematicsList
SysListHandle m_systematicsList
the systematics list we run
Definition: JetCalibrationAlg.h:36
CP::JetCalibrationAlg
an algorithm for calling IJetCalibrationTool
Definition: JetCalibrationAlg.h:21
CP
Select isolated Photons, Electrons and Muons.
Definition: Control/xAODRootAccess/xAODRootAccess/TEvent.h:48
EL::AnaAlgorithm::AnaAlgorithm
AnaAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
constructor with parameters
Definition: AnaAlgorithm.cxx:40
IJetCalibrationTool.h
AnaAlgorithm.h
CP::JetCalibrationAlg::m_calibrationTool
ToolHandle< IJetCalibrationTool > m_calibrationTool
the calibration tool
Definition: JetCalibrationAlg.h:32
EL::AnaAlgorithm
the (new) base class for EventLoop algorithms
Definition: AnaAlgorithm.h:73
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
CP::JetCalibrationAlg::m_jetHandle
SysCopyHandle< xAOD::JetContainer > m_jetHandle
the jet collection we run on
Definition: JetCalibrationAlg.h:40
CP::SysCopyHandle
a systematics data handle that will either copy the input object or act like an update handle
Definition: SysCopyHandle.h:62
CP::JetCalibrationAlg::execute
StatusCode execute() override
Definition: JetCalibrationAlg.cxx:33