From fb2085572bb5cc202e863583bde657f4a2acc5b3 Mon Sep 17 00:00:00 2001 From: scott snyder <sss@karma> Date: Tue, 16 Jun 2020 15:15:14 +0200 Subject: [PATCH] TrigT1Monitoring: Remove use of DataHandle. Remove obsolete use of DataHandle. --- .../TrigT1/TrigT1Monitoring/src/L1CaloL1TopoMon.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Trigger/TrigT1/TrigT1Monitoring/src/L1CaloL1TopoMon.cxx b/Trigger/TrigT1/TrigT1Monitoring/src/L1CaloL1TopoMon.cxx index 8f0e33e0f6f0..b22d1b883e05 100755 --- a/Trigger/TrigT1/TrigT1Monitoring/src/L1CaloL1TopoMon.cxx +++ b/Trigger/TrigT1/TrigT1Monitoring/src/L1CaloL1TopoMon.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration */ #include <map> @@ -431,7 +431,7 @@ StatusCode L1CaloL1TopoMon::fillHistograms() topo_error|=(1<<CALO_CONV); } - const DataHandle<CTP_RDO> ctpRDO = 0; + const CTP_RDO* ctpRDO = 0; sc = evtStore()->retrieve(ctpRDO,"CTP_RDO"); if (sc.isFailure()) { ATH_MSG_WARNING("Could not find CTP_RDO in StoreGate"); @@ -467,7 +467,7 @@ StatusCode L1CaloL1TopoMon::fillHistograms() } // Retrieve CMX CP tobs - const DataHandle<xAOD::CMXCPTobContainer> cmxcptob = 0; + const xAOD::CMXCPTobContainer* cmxcptob = 0; sc = evtStore()->retrieve(cmxcptob); if (sc.isFailure() || !cmxcptob) { ATH_MSG_DEBUG ("No CMX CP tobs found in TES"); @@ -494,7 +494,7 @@ StatusCode L1CaloL1TopoMon::fillHistograms() std::vector<const xAOD::CMXJetTob*> cmxtobs; // Retrieve CMX jet tobs - const DataHandle<xAOD::CMXJetTobContainer> cmxtob = 0; + const xAOD::CMXJetTobContainer* cmxtob = 0; sc = evtStore()->retrieve(cmxtob); if (sc.isFailure() || !cmxtob) { ATH_MSG_DEBUG ("No CMX tobs found in TES"); @@ -525,7 +525,7 @@ StatusCode L1CaloL1TopoMon::fillHistograms() << m_topoCTPLoc.value()); } else { - const DataHandle< LVL1::FrontPanelCTP > topoCTP; + const LVL1::FrontPanelCTP* topoCTP = nullptr; CHECK_RECOVERABLE(evtStore()->retrieve(topoCTP,m_topoCTPLoc.value())); if (!topoCTP){ ATH_MSG_INFO( "Retrieve of LVL1::FrontPanelCTP failed." ); @@ -566,7 +566,7 @@ StatusCode L1CaloL1TopoMon::fillHistograms() // Retrieve the L1Topo RDOs from the DAQ RODs const int NFPGA=4; - const DataHandle<L1TopoRDOCollection> rdos = 0; + const L1TopoRDOCollection* rdos = 0; sc = evtStore()->retrieve(rdos); if (sc.isFailure() or 0 == rdos) { m_h_l1topo_1d_Errors->Fill(NO_DAQ); -- GitLab