From 2234d7d76e5c9ae1a974847d9b88e80bb96b9ce6 Mon Sep 17 00:00:00 2001
From: scott snyder <scott.snyder@cern.ch>
Date: Fri, 22 Sep 2017 09:46:18 +0200
Subject: [PATCH] SiSpacePointFormation: Fix clang warnings.

clang warnings: unused class data members.


Former-commit-id: cc67e83e087d3a22fdbc5f2cc6ccc84f1ef7e26b
---
 .../SiSpacePointFormation/SiElementPropertiesTable.h            | 1 -
 .../SiSpacePointFormation/SiTrackerSpacePointFinder.h           | 1 -
 .../SiSpacePointFormation/src/SiElementPropertiesTable.cxx      | 2 +-
 .../SiSpacePointFormation/src/SiTrackerSpacePointFinder.cxx     | 1 -
 4 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiElementPropertiesTable.h b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiElementPropertiesTable.h
index c79dd4539bc..45b253d50e3 100755
--- a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiElementPropertiesTable.h
+++ b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiElementPropertiesTable.h
@@ -37,7 +37,6 @@ public:
 private:
     std::vector<SiElementProperties*>		m_properties;
     const InDetDD::SiDetectorElementCollection&	m_elements; 
-    float					m_epsilonWidth; //tolerance for strip overlap limits.   
     int						m_maxSCT;
     std::vector<SiElementProperties*>::const_iterator m_propertiesBegin;
     
diff --git a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiTrackerSpacePointFinder.h b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiTrackerSpacePointFinder.h
index 606d22870f1..cd00b0c1032 100755
--- a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiTrackerSpacePointFinder.h
+++ b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/SiSpacePointFormation/SiTrackerSpacePointFinder.h
@@ -150,7 +150,6 @@ namespace InDet {
     Amg::Vector3D m_vertex;
     ServiceHandle<IBeamCondSvc> m_iBeamCondSvc; 
 
-    Event* m_event;
     int m_numberOfEvents;
     const InDetDD::SCT_DetectorManager* m_manager; 
     // const InDetDD::PixelDetectorManager* m_managerPixel;     // unused
diff --git a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiElementPropertiesTable.cxx b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiElementPropertiesTable.cxx
index 6be19b73747..ed176f3cb05 100755
--- a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiElementPropertiesTable.cxx
+++ b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiElementPropertiesTable.cxx
@@ -19,7 +19,7 @@ namespace InDet{
 SiElementPropertiesTable::SiElementPropertiesTable(const SCT_ID&  idHelper,
     const InDetDD::SiDetectorElementCollection& elements,
     float   epsilonWidth) 
-    : m_elements(elements),m_epsilonWidth(epsilonWidth){
+    : m_elements(elements){
   m_maxSCT = idHelper.wafer_hash_max();
   m_properties.reserve(m_maxSCT);
   for (int i = 0; i < m_maxSCT; ++i){
diff --git a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiTrackerSpacePointFinder.cxx b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiTrackerSpacePointFinder.cxx
index 62d361f8c07..b16375ddf6b 100755
--- a/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiTrackerSpacePointFinder.cxx
+++ b/InnerDetector/InDetRecAlgs/SiSpacePointFormation/src/SiTrackerSpacePointFinder.cxx
@@ -64,7 +64,6 @@ namespace InDet {
     m_yVertex(0.),
     m_zVertex(0.),
     m_iBeamCondSvc("BeamCondSvc",name),
-    m_event(nullptr),
     m_numberOfEvents(0),
     m_manager(0),
     m_idHelper(nullptr),
-- 
GitLab