Skip to content
Snippets Groups Projects
Commit 34c552af authored by Christos Anastopoulos's avatar Christos Anastopoulos
Browse files

egammaTools . Remove uneeded hltExecute.

parent f0a44f3f
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!41798egammaTools . Remove uneeded hltExecute.
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
...@@ -42,8 +42,6 @@ class IEMConversionBuilder : virtual public IAlgTool ...@@ -42,8 +42,6 @@ class IEMConversionBuilder : virtual public IAlgTool
virtual StatusCode initialize() = 0; virtual StatusCode initialize() = 0;
/** @brief execute method*/ /** @brief execute method*/
virtual StatusCode executeRec(const EventContext& ctx,egammaRec* egRec) const = 0; virtual StatusCode executeRec(const EventContext& ctx,egammaRec* egRec) const = 0;
/** @brief execute method*/
virtual StatusCode hltExecute(egammaRec* egRec, const xAOD::VertexContainer* conversions) const =0;
}; };
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef EGAMMAINTERFACES_IEMFOURMOMBUILDER_H #ifndef EGAMMAINTERFACES_IEMFOURMOMBUILDER_H
...@@ -46,8 +46,6 @@ class IEMFourMomBuilder : virtual public IegammaBaseTool ...@@ -46,8 +46,6 @@ class IEMFourMomBuilder : virtual public IegammaBaseTool
virtual StatusCode initialize() = 0; virtual StatusCode initialize() = 0;
/** @brief execute method */ /** @brief execute method */
virtual StatusCode execute(const EventContext& ctx, xAOD::Egamma* eg) const = 0; virtual StatusCode execute(const EventContext& ctx, xAOD::Egamma* eg) const = 0;
/** @brief execute method for the HLT*/
virtual StatusCode hltExecute(xAOD::Egamma* eg) const = 0;
}; };
inline const InterfaceID& IEMFourMomBuilder::interfaceID() inline const InterfaceID& IEMFourMomBuilder::interfaceID()
......
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
/******************************************************************** /********************************************************************
...@@ -123,14 +123,6 @@ EMConversionBuilder::executeRec(const EventContext& ctx, egammaRec* egRec) const ...@@ -123,14 +123,6 @@ EMConversionBuilder::executeRec(const EventContext& ctx, egammaRec* egRec) const
return StatusCode::SUCCESS; return StatusCode::SUCCESS;
} }
StatusCode
EMConversionBuilder::hltExecute(egammaRec* egRec,
const xAOD::VertexContainer* conversions) const
{
ATH_CHECK(vertexExecute(Gaudi::Hive::currentContext(), egRec, conversions));
return StatusCode::SUCCESS;
}
StatusCode StatusCode
EMConversionBuilder::vertexExecute( EMConversionBuilder::vertexExecute(
const EventContext& ctx, const EventContext& ctx,
......
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef EGAMMATOOLS_EMCONVERSIONBUILDER_H #ifndef EGAMMATOOLS_EMCONVERSIONBUILDER_H
...@@ -56,10 +56,6 @@ public: ...@@ -56,10 +56,6 @@ public:
/** @brief execute method*/ /** @brief execute method*/
virtual StatusCode executeRec(const EventContext& ctx, virtual StatusCode executeRec(const EventContext& ctx,
egammaRec* egRec) const override final; egammaRec* egRec) const override final;
/** @brief execute method*/
virtual StatusCode hltExecute(
egammaRec* egRec,
const xAOD::VertexContainer* conversions) const override final;
private: private:
/** @brief actual implementation method*/ /** @brief actual implementation method*/
......
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
/******************************************************************** /********************************************************************
...@@ -92,12 +92,6 @@ EMFourMomBuilder::execute(const EventContext& ctx, xAOD::Egamma* eg) const ...@@ -92,12 +92,6 @@ EMFourMomBuilder::execute(const EventContext& ctx, xAOD::Egamma* eg) const
return sc; return sc;
} }
StatusCode
EMFourMomBuilder::hltExecute(xAOD::Egamma* eg) const
{
return execute(Gaudi::Hive::currentContext(), eg);
}
StatusCode StatusCode
EMFourMomBuilder::setFromTrkCluster(xAOD::Electron& el) const EMFourMomBuilder::setFromTrkCluster(xAOD::Electron& el) const
{ {
......
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef EGAMMATOOLS_EMFOURMOMBUILDER_H #ifndef EGAMMATOOLS_EMFOURMOMBUILDER_H
...@@ -54,8 +54,6 @@ public: ...@@ -54,8 +54,6 @@ public:
/** @brief execute method*/ /** @brief execute method*/
virtual StatusCode execute(const EventContext& ctx, virtual StatusCode execute(const EventContext& ctx,
xAOD::Egamma* eg) const override final; xAOD::Egamma* eg) const override final;
/** @brief execute method*/
virtual StatusCode hltExecute(xAOD::Egamma* eg) const override final;
private: private:
/** @brief Method to set the 4-mom in case of electron */ /** @brief Method to set the 4-mom in case of electron */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment