Skip to content
Snippets Groups Projects
Commit 6def5436 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrackCaloClusterRecValidation: migrate service pointers to handles

parent 0ddee765
No related merge requests found
......@@ -130,12 +130,9 @@ StatusCode CalibrationNtupleMakerTool::bookTree()
}
// now register the Tree
ITHistSvc* tHistSvc = nullptr;
if (service("THistSvc",tHistSvc).isFailure()) {
ATH_MSG_ERROR( "initialize() Could not find Hist Service!" );
return StatusCode::FAILURE;
}
SmartIF<ITHistSvc> tHistSvc{service("THistSvc")};
ATH_CHECK( tHistSvc.isValid() );
if (tHistSvc) {
for (const auto& name : m_collectionNames) {
if((tHistSvc->regTree(m_treeFolder+name, m_trees.at(name))).isFailure()) {
......
/*
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
#include "TCCPlotsBase.h"
......@@ -10,9 +10,7 @@
#include "GaudiKernel/Service.h"
#include "GaudiKernel/IToolSvc.h"
// to retrieve HistogramDefinitionSvc
#include "InDetPhysValMonitoring/HistogramDefinitionSvc.h"
#include "AthenaBaseComps/AthCheckMacros.h"
#include "InDetPhysValMonitoring/SingleHistogramDefinition.h"
#include <cmath>
......@@ -38,7 +36,7 @@ TCCPlotsBase::TCCPlotsBase(PlotBase* pParent, const std::string& folder):
PlotBase(pParent, folder),
AthMessaging("TCCPlots"),
m_folder(folder),
m_histoDefSvc(nullptr) {}
m_histoDefSvc("HistogramDefinitionSvc", "TCCPlots") {}
void TCCPlotsBase::book(TH1*& pHisto, const std::string& histoIdentifier, const std::string& folder) {
......@@ -136,15 +134,7 @@ SingleHistogramDefinition TCCPlotsBase::retrieveDefinition(const std::string& hi
ATH_MSG_DEBUG("Retrieving SingleHistogramDefinition for "<< histoIdentifier);
if (not m_histoDefSvc) {
ISvcLocator* svcLoc = Gaudi::svcLocator();
StatusCode sc = svcLoc->service("HistogramDefinitionSvc", m_histoDefSvc);
if (sc.isFailure()) {
ATH_MSG_FATAL("failed to retrieve HistogramDefinitionSvc in " << __FILE__);
throw std::runtime_error("Could initialise the HistogramDefinitionSvc");
return s;
}
}
ATH_CHECK( m_histoDefSvc.retrieve(), s );
bool folderDefault = (folder.empty() or folder == "default");
s = m_histoDefSvc->definition(histoIdentifier, folder);
// "default" and empty string should be equivalent
......
/*
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
#ifndef TRACKCALOCLUSTERREC_TRACKCALOCLUSTERRECVALIDATION_TCCPLOTSBASE_H
......@@ -8,8 +8,9 @@
#include "TrkValHistUtils/PlotBase.h"
#include "xAODBase/IParticle.h"
#include "AthenaBaseComps/AthMessaging.h"
#include "GaudiKernel/ServiceHandle.h"
#include "InDetPhysValMonitoring/IHistogramDefinitionSvc.h"
class IHistogramDefinitionSvc;
class SingleHistogramDefinition;
class TCCPlotsBase : public PlotBase, public AthMessaging {
......@@ -46,7 +47,7 @@ class TCCPlotsBase : public PlotBase, public AthMessaging {
std::string m_folder;
private:
IHistogramDefinitionSvc* m_histoDefSvc;
ServiceHandle<IHistogramDefinitionSvc> m_histoDefSvc;
};
......
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