From fea4eb1370a51ce4681cca71235a087c20f34c7b Mon Sep 17 00:00:00 2001 From: scott snyder <scott.snyder@cern.ch> Date: Fri, 16 Nov 2018 16:30:38 +0100 Subject: [PATCH] TrigOnlineMonitor: Avoid use of non-bound DataHandle. Deprecating use of non-bound DataHandle, especially non-const. --- .../TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HLT/Trigger/TrigMonitoring/TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx b/HLT/Trigger/TrigMonitoring/TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx index 2043c5ca710..32d4858696d 100644 --- a/HLT/Trigger/TrigMonitoring/TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx +++ b/HLT/Trigger/TrigMonitoring/TrigOnlineMonitor/src/TrigL1TopoWriteValData.cxx @@ -61,7 +61,7 @@ StatusCode TrigL1TopoWriteValData::doWriteValData(){ int num_words = 4; // Retrieve HLTResult - DataHandle<HLT::HLTResult> hltResult; ///! HLTResult object + HLT::HLTResult* hltResult = nullptr; ///! HLTResult object if ( ! evtStore()->transientContains<HLT::HLTResult>(m_HltResultName.value()) ) { ATH_MSG_INFO("Could not find HLTResult with key " << m_HltResultName.value() << "in SG." ); } else { @@ -73,7 +73,7 @@ StatusCode TrigL1TopoWriteValData::doWriteValData(){ } // Retrieve L1Topo CTP simulated decision if present - const DataHandle< LVL1::FrontPanelCTP > simTopoCTP; ///! simulation output + const LVL1::FrontPanelCTP* simTopoCTP = nullptr; ///! simulation output if ( ! evtStore()->contains<LVL1::FrontPanelCTP>(m_simTopoCTPLocation.value()) ){ ATH_MSG_INFO("Could not find LVL1::FrontPanelCTP with key " << m_simTopoCTPLocation.value() << "in SG." ); } else { @@ -85,7 +85,7 @@ StatusCode TrigL1TopoWriteValData::doWriteValData(){ } // Retrieve L1Topo CTP simulated overflows if present - const DataHandle< LVL1::FrontPanelCTP > simTopoOverflowCTP; ///! simulated overflow output + const LVL1::FrontPanelCTP* simTopoOverflowCTP = nullptr; ///! simulated overflow output if ( ! evtStore()->contains<LVL1::FrontPanelCTP>(m_simTopoOverflowCTPLocation.value()) ){ ATH_MSG_INFO("Could not find LVL1::FrontPanelCTP with key " << m_simTopoOverflowCTPLocation.value() << " in SG. No simulated overflow bits" ); } else { -- GitLab