Skip to content
Snippets Groups Projects
Commit 7ab00587 authored by scott snyder's avatar scott snyder
Browse files

MagFieldUtils: Comply with ATLAS naming conventions.

Private data members should start with m_.


Former-commit-id: a7cff2ee
parent 15c7a7f9
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ namespace MagField {
// debug
int referenceCount;
int m_referenceCount;
std::string m_refFile; //!< reference field file name
std::string m_refTreeName; //!< TTree object in reference file
......
......@@ -157,7 +157,7 @@ StatusCode MagField::MagFieldTestbedAlg::initialize() {
}
}
referenceCount = 0;
m_referenceCount = 0;
// success
ATH_MSG_INFO("end of initialize()");
......@@ -562,7 +562,7 @@ bool MagField::MagFieldTestbedAlg::checkWithReference() {
ATH_MSG_INFO(
"coordinates: " << m_xyzt[0] << ", " << m_xyzt[1]
<< ", " << m_xyzt[2]);
referenceCount++;
m_referenceCount++;
}
}
......@@ -600,7 +600,7 @@ bool MagField::MagFieldTestbedAlg::checkWithReference() {
// close the reference file
refF->Close();
ATH_MSG_INFO("number of values unequal: " << referenceCount);
ATH_MSG_INFO("number of values unequal: " << m_referenceCount);
ATH_MSG_INFO("number of readings from reference file: " << nentries);
ATH_MSG_INFO(
......
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