From 1dd400ba2ae63fa77856db0e722b1920cb4d1aeb Mon Sep 17 00:00:00 2001
From: scott snyder <scott.snyder@cern.ch>
Date: Mon, 4 Sep 2017 16:39:15 +0200
Subject: [PATCH] TrigT1ZDC: clang warnings: unused members.

---
 Trigger/TrigT1/TrigT1ZDC/TrigT1ZDC/TrigT1ZDC.h | 3 +--
 Trigger/TrigT1/TrigT1ZDC/src/TrigT1ZDC.cxx     | 4 +---
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/Trigger/TrigT1/TrigT1ZDC/TrigT1ZDC/TrigT1ZDC.h b/Trigger/TrigT1/TrigT1ZDC/TrigT1ZDC/TrigT1ZDC.h
index 21e08b55c23..0b3fed26fa3 100644
--- a/Trigger/TrigT1/TrigT1ZDC/TrigT1ZDC/TrigT1ZDC.h
+++ b/Trigger/TrigT1/TrigT1ZDC/TrigT1ZDC/TrigT1ZDC.h
@@ -36,7 +36,6 @@ namespace LVL1 {
     
     /** flags **/
     bool m_zdcIncludeLHCf;
-    bool m_zdcMakeHisto;
     
     /** A data member to retain a connection to the level 1
 	configuration service */
@@ -67,7 +66,7 @@ namespace LVL1 {
     
     /** A flag to prevent the trigger simulation from running over bad
 	input data.  */
-    bool m_badDataFound;
+    //bool m_badDataFound;
     
     /** McEventCollection key.  Needed for truth based trigger
 	simulation. */
diff --git a/Trigger/TrigT1/TrigT1ZDC/src/TrigT1ZDC.cxx b/Trigger/TrigT1/TrigT1ZDC/src/TrigT1ZDC.cxx
index 1eb73cd49da..d0556b271ff 100644
--- a/Trigger/TrigT1/TrigT1ZDC/src/TrigT1ZDC.cxx
+++ b/Trigger/TrigT1/TrigT1ZDC/src/TrigT1ZDC.cxx
@@ -19,7 +19,6 @@ namespace LVL1 {
 
   TrigT1ZDC::TrigT1ZDC(const std::string& name,
 		       ISvcLocator* pSvcLocator): AthAlgorithm(name, pSvcLocator), 
-						  m_zdcMakeHisto(0),
 						  m_configSvc("TrigConf::LVL1ConfigSvc/LVL1ConfigSvc", name),
 						  m_zdcContainerName("ZDC"),
 						  m_threshold_c(-1),
@@ -29,8 +28,7 @@ namespace LVL1 {
 						  m_cablestart_ac(-1),	
 						  m_passedA(0),
 						  m_passedC(0),
-						  m_passedAC(0),
-						  m_badDataFound(false)
+						  m_passedAC(0)
   {
     declareProperty("LVL1ConfigSvc", m_configSvc, "LVL1 Config Service");
     declareProperty("ZdcContainerName", m_zdcContainerName = "ZDC");
-- 
GitLab