Skip to content
Snippets Groups Projects
Commit d309cbe0 authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

TrigHLTJetHypo: Fix clang warnings.

clang warnings: unused members, header guard mismatch.

Some unused members commented out rather than deleted because they are
referenced in existing commented-out code.
parent 1c4febfd
No related branches found
No related tags found
No related merge requests found
...@@ -103,10 +103,6 @@ class TrigEFRazorAllTE : public HLT::AllTEAlgo { ...@@ -103,10 +103,6 @@ class TrigEFRazorAllTE : public HLT::AllTEAlgo {
double m_p[2]; double m_p[2];
double m_dot; double m_dot;
//IHistogramSvc* m_histsvc;
StoreGateSvc* m_storeGate;
// Timing: // Timing:
ITrigTimerSvc* m_timersvc; ITrigTimerSvc* m_timersvc;
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef TRGHLTJETHYPO2_H #ifndef TRIGHLTJETHYPO_TRIGHLTJETHYPO2_H
#define TRIGHLTJETHYPO2_H #define TRIGHLTJETHYPO_TRIGHLTJETHYPO2_H
/******************************************************************** /********************************************************************
* *
* NAME: Trighltjethypo2.h * NAME: Trighltjethypo2.h
......
...@@ -56,9 +56,9 @@ class CleanerFactory{ ...@@ -56,9 +56,9 @@ class CleanerFactory{
private: private:
//run 1 cleaning //run 1 cleaning
double m_n90Threshold; //double m_n90Threshold;
double m_presamplerThreshold; //double m_presamplerThreshold;
double m_negativeEThreshold; //double m_negativeEThreshold;
//loose cleaning //loose cleaning
double m_fSampMaxLooseThreshold; double m_fSampMaxLooseThreshold;
......
...@@ -42,9 +42,9 @@ std::shared_ptr<ICleaner> makeEtaEtCleaner(double etaMin, ...@@ -42,9 +42,9 @@ std::shared_ptr<ICleaner> makeEtaEtCleaner(double etaMin,
CleanerFactory::CleanerFactory(//basic cleaning CleanerFactory::CleanerFactory(//basic cleaning
double n90Threshold, double /*n90Threshold*/,
double presamplerThreshold, double /*presamplerThreshold*/,
double negativeEThreshold, double /*negativeEThreshold*/,
//loose cleaning //loose cleaning
double fSampMaxLooseThreshold, double fSampMaxLooseThreshold,
double etaLooseThreshold, double etaLooseThreshold,
...@@ -64,9 +64,9 @@ CleanerFactory::CleanerFactory(//basic cleaning ...@@ -64,9 +64,9 @@ CleanerFactory::CleanerFactory(//basic cleaning
double hecqLlpThreshold, double hecqLlpThreshold,
double avLarQFLlpThreshold, double avLarQFLlpThreshold,
const std::string& key): const std::string& key):
m_n90Threshold(n90Threshold), //m_n90Threshold(n90Threshold),
m_presamplerThreshold(presamplerThreshold), //m_presamplerThreshold(presamplerThreshold),
m_negativeEThreshold(negativeEThreshold), //m_negativeEThreshold(negativeEThreshold),
m_fSampMaxLooseThreshold(fSampMaxLooseThreshold), m_fSampMaxLooseThreshold(fSampMaxLooseThreshold),
m_etaLooseThreshold(etaLooseThreshold), m_etaLooseThreshold(etaLooseThreshold),
m_emfLowLooseThreshold(emfLowLooseThreshold), m_emfLowLooseThreshold(emfLowLooseThreshold),
......
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