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 {
double m_p[2];
double m_dot;
//IHistogramSvc* m_histsvc;
StoreGateSvc* m_storeGate;
// Timing:
ITrigTimerSvc* m_timersvc;
......
......@@ -2,8 +2,8 @@
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef TRGHLTJETHYPO2_H
#define TRIGHLTJETHYPO2_H
#ifndef TRIGHLTJETHYPO_TRIGHLTJETHYPO2_H
#define TRIGHLTJETHYPO_TRIGHLTJETHYPO2_H
/********************************************************************
*
* NAME: Trighltjethypo2.h
......
......@@ -56,9 +56,9 @@ class CleanerFactory{
private:
//run 1 cleaning
double m_n90Threshold;
double m_presamplerThreshold;
double m_negativeEThreshold;
//double m_n90Threshold;
//double m_presamplerThreshold;
//double m_negativeEThreshold;
//loose cleaning
double m_fSampMaxLooseThreshold;
......
......@@ -42,9 +42,9 @@ std::shared_ptr<ICleaner> makeEtaEtCleaner(double etaMin,
CleanerFactory::CleanerFactory(//basic cleaning
double n90Threshold,
double presamplerThreshold,
double negativeEThreshold,
double /*n90Threshold*/,
double /*presamplerThreshold*/,
double /*negativeEThreshold*/,
//loose cleaning
double fSampMaxLooseThreshold,
double etaLooseThreshold,
......@@ -64,9 +64,9 @@ CleanerFactory::CleanerFactory(//basic cleaning
double hecqLlpThreshold,
double avLarQFLlpThreshold,
const std::string& key):
m_n90Threshold(n90Threshold),
m_presamplerThreshold(presamplerThreshold),
m_negativeEThreshold(negativeEThreshold),
//m_n90Threshold(n90Threshold),
//m_presamplerThreshold(presamplerThreshold),
//m_negativeEThreshold(negativeEThreshold),
m_fSampMaxLooseThreshold(fSampMaxLooseThreshold),
m_etaLooseThreshold(etaLooseThreshold),
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