ATLAS Offline Software
DiTauSmearingAlg.cxx
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 
9 //
10 // includes
11 //
12 
14 
15 //
16 // method implementations
17 //
18 
19 namespace CP
20 {
21 
23  initialize ()
24  {
25  ANA_CHECK (m_smearingTool.retrieve());
31  return StatusCode::SUCCESS;
32  }
33 
34 
35 
37  execute ()
38  {
39  for (const auto& sys : m_systematicsList.systematicsVector())
40  {
41  ANA_CHECK (m_smearingTool->applySystematicVariation (sys));
42  xAOD::DiTauJetContainer *taus = nullptr;
43  ANA_CHECK (m_tauHandle.getCopy (taus, sys));
44  for (xAOD::DiTauJet *tau : *taus)
45  {
46  if (m_preselection.getBool (*tau, sys))
47  {
48  ANA_CHECK_CORRECTION (m_outOfValidity, *tau, m_smearingTool->applyCorrection (*tau));
49  }
50  }
51  }
52  return StatusCode::SUCCESS;
53  }
54 }
55 
DiTauSmearingAlg.h
CP::DiTauSmearingAlg::m_tauHandle
SysCopyHandle< xAOD::DiTauJetContainer > m_tauHandle
the tau collection we run on
Definition: DiTauSmearingAlg.h:42
CP::DiTauSmearingAlg::m_smearingTool
ToolHandle< TauAnalysisTools::IDiTauSmearingTool > m_smearingTool
the smearing tool
Definition: DiTauSmearingAlg.h:34
CP::DiTauSmearingAlg::execute
StatusCode execute() override
Definition: DiTauSmearingAlg.cxx:37
CP::SysListHandle::addSystematics
StatusCode addSystematics(const CP::SystematicSet &recommended, const CP::SystematicSet &affecting)
register a set of affecting variables for the current algorithm (usually obtained from an CP::ISystem...
Definition: SysListHandle.cxx:48
ANA_CHECK
#define ANA_CHECK(EXP)
check whether the given expression was successful
Definition: Control/AthToolSupport/AsgMessaging/AsgMessaging/MessageCheck.h:324
CP::SysListHandle::systematicsVector
const std::vector< CP::SystematicSet > & systematicsVector() const
the list of systematics to loop over
Definition: SysListHandle.cxx:96
CP::DiTauSmearingAlg::m_preselection
SysReadSelectionHandle m_preselection
the preselection we apply to our input
Definition: DiTauSmearingAlg.h:47
CP
Select isolated Photons, Electrons and Muons.
Definition: Control/xAODRootAccess/xAODRootAccess/TEvent.h:48
mapkey::sys
@ sys
Definition: TElectronEfficiencyCorrectionTool.cxx:42
CP::DiTauSmearingAlg::m_systematicsList
SysListHandle m_systematicsList
the systematics list we run
Definition: DiTauSmearingAlg.h:38
CP::SysListHandle::initialize
::StatusCode initialize()
intialize this property
Definition: SysListHandle.cxx:69
CP::SysReadSelectionHandle::getBool
bool getBool(const SG::AuxElement &element, const CP::SystematicSet &sys) const
get the selection as a bool
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
DataVector
Derived DataVector<T>.
Definition: DataVector.h:581
ANA_CHECK_CORRECTION
#define ANA_CHECK_CORRECTION(helper, object, expr)
a helper check macro to work with OutOfValidityHelper
Definition: OutOfValidityHelper.h:132
CP::DiTauSmearingAlg::m_outOfValidity
OutOfValidityHelper m_outOfValidity
the helper for OutOfValidity results
Definition: DiTauSmearingAlg.h:52
CP::OutOfValidityHelper::initialize
::StatusCode initialize()
standard initialize
Definition: OutOfValidityHelper.cxx:25
CP::SysReadSelectionHandle::initialize
StatusCode initialize(SysListHandle &sysListHandle, const ISysHandleBase &objectHandle)
initialize the accessor
Definition: SysReadSelectionHandle.cxx:34
CP::DiTauSmearingAlg::initialize
StatusCode initialize() override
Definition: DiTauSmearingAlg.cxx:23
xAOD::DiTauJet_v1
Definition: DiTauJet_v1.h:31
SG::AllowEmpty
@ AllowEmpty
Definition: StoreGate/StoreGate/VarHandleKey.h:30