Skip to content
Snippets Groups Projects
Commit 9e4038b7 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'checkerConst.PixelConditionsData-20211123' into 'master'

PixelConditionsData: Update for thread-safety checker const changes.

See merge request atlas/athena!48479
parents c6754cfe 5d2b19bb
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
......@@ -56,8 +56,8 @@ class PixelClusterErrorData {
int getBarrelBin(double eta, int etaClusterSize, int phiClusterSize) const;
// assuming phi and eta parametrizations have the same number of bins...
int getNumberOfBarrelBins(){ return m_barrelphierror.size(); }
int getNumberOfEndcapBins(){ return m_endcapphierror.size(); }
int getNumberOfBarrelBins() const { return m_barrelphierror.size(); }
int getNumberOfEndcapBins() const { return m_endcapphierror.size(); }
void Print(const std::string& file) const;
void Load(const std::string& file);
......
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