From e73f8e7d8daa31ee7332c19899ec62bb12f0fe6c Mon Sep 17 00:00:00 2001 From: scott snyder <snyder@bnl.gov> Date: Sat, 18 Mar 2017 14:29:17 +0100 Subject: [PATCH] FTK_RecTools: Fix linking in dbg build Use IIBLParameterSvc instead of IBLParameterSvc to avoid a link dependency on the (component-only) library PixelGeoModel. --- .../FTK_RecTools/FTK_RecTools/FTK_PixelClusterOnTrackTool.h | 4 ++-- .../TrigFTK/FTK_RecTools/src/FTK_PixelClusterOnTrackTool.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Trigger/TrigFTK/FTK_RecTools/FTK_RecTools/FTK_PixelClusterOnTrackTool.h b/Trigger/TrigFTK/FTK_RecTools/FTK_RecTools/FTK_PixelClusterOnTrackTool.h index 8533a1e0c21..f2ef250f4e1 100644 --- a/Trigger/TrigFTK/FTK_RecTools/FTK_RecTools/FTK_PixelClusterOnTrackTool.h +++ b/Trigger/TrigFTK/FTK_RecTools/FTK_RecTools/FTK_PixelClusterOnTrackTool.h @@ -33,7 +33,7 @@ class IPixelOfflineCalibSvc; class IModuleDistortionsTool; class StoreGateSvc; -class IBLParameterSvc; +class IIBLParameterSvc; //namespace InDet { @@ -177,7 +177,7 @@ public: /** NN clusterizationi factory for NN based positions and errors **/ ToolHandle<InDet::NnClusterizationFactory> m_NnClusterizationFactory; ServiceHandle<StoreGateSvc> m_storeGate; //!< Event store - ServiceHandle<IBLParameterSvc> m_IBLParameterSvc; + ServiceHandle<IIBLParameterSvc> m_IBLParameterSvc; SG::ReadHandleKey<InDet::DRMap> m_dRMap; //!< the actual dR map diff --git a/Trigger/TrigFTK/FTK_RecTools/src/FTK_PixelClusterOnTrackTool.cxx b/Trigger/TrigFTK/FTK_RecTools/src/FTK_PixelClusterOnTrackTool.cxx index aa756c64222..a4f02838783 100644 --- a/Trigger/TrigFTK/FTK_RecTools/src/FTK_PixelClusterOnTrackTool.cxx +++ b/Trigger/TrigFTK/FTK_RecTools/src/FTK_PixelClusterOnTrackTool.cxx @@ -21,7 +21,7 @@ #include "StoreGate/StoreGateSvc.h" #include "GaudiKernel/IIncidentSvc.h" #include "EventPrimitives/EventPrimitives.h" -#include "PixelGeoModel/IBLParameterSvc.h" +#include "PixelGeoModel/IIBLParameterSvc.h" #include "InDetReadoutGeometry/SiDetectorElement.h" #include "CoralBase/AttributeListSpecification.h" -- GitLab