Skip to content
Snippets Groups Projects
Commit 8be44f34 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

SCT_CalibAlgs: Fix clang warnings.

clang warnings: unused private data members.
parent 2d80ce2f
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -46,8 +46,6 @@ SCT_CalibBsErrorTool::SCT_CalibBsErrorTool(const std::string& type, const std::s
m_scterr_eta(0),
m_scterr_phi(0),
m_scterr_side(0),
m_scterr_rodid(0),
m_scterr_channel(0),
m_scterr_type(0)
{
}
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -67,8 +67,6 @@ class SCT_CalibBsErrorTool : public extends<AthAlgTool, ISCT_CalibHistoTool>
VecInt *m_scterr_eta;
VecInt *m_scterr_phi;
VecInt *m_scterr_side;
VecInt *m_scterr_rodid;
VecInt *m_scterr_channel;
VecInt *m_scterr_type;
void
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -30,14 +30,12 @@ SCT_CalibEventInfo::SCT_CalibEventInfo(const std::string& type, const std::strin
m_tsBeginString(""),
m_tsEndString(""),
m_timeStampEnd(INTMIN),
m_timeStampMax(INTMIN),
m_duration(0),
m_LBBegin(INTMAX),
m_LBEnd(INTMIN),
m_numLB(0),
m_source("UNKNOWN"),
m_runNumber(0),
m_eventNumber(0),
m_lumiBlock(0),
m_timeStamp(0),
m_bunchCrossing(0),
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -67,7 +67,6 @@ class SCT_CalibEventInfo: public extends<AthAlgTool, ISCT_CalibEvtInfo>
std::string m_tsBeginString;
std::string m_tsEndString;
int m_timeStampEnd;
int m_timeStampMax;
int m_duration;
int m_LBBegin;
int m_LBEnd;
......@@ -76,7 +75,6 @@ class SCT_CalibEventInfo: public extends<AthAlgTool, ISCT_CalibEvtInfo>
//
mutable int m_runNumber;
mutable int m_eventNumber;
mutable int m_lumiBlock;
mutable int m_timeStamp;
mutable int m_bunchCrossing;
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -35,7 +35,6 @@ SCT_CalibHvTool::SCT_CalibHvTool(const std::string& type, const std::string& nam
m_pSCTHelper(0),
m_sct_waferHash(0),
m_sct_numHitsInWafer(0),
m_lumiBlock(0),
m_maxq(100),
m_phvtripPrevTime(0),
m_phvtripFirstTime(0),
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -73,7 +73,6 @@ class SCT_CalibHvTool : public extends<AthAlgTool, ISCT_CalibHistoTool>
typedef std::vector<int> VecInt;
VecInt *m_sct_waferHash;
VecInt *m_sct_numHitsInWafer;
mutable int m_lumiBlock;
//private use in this class
int m_maxq;
......
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