From f43e9ea97bb200a47356a564e84de8a7e228eca3 Mon Sep 17 00:00:00 2001 From: scott snyder <scott.snyder@cern.ch> Date: Mon, 4 Sep 2017 16:34:43 +0200 Subject: [PATCH] TrigT2CaloCommon: Comply with ATLAS naming conventions. Protected data members should start with m_. Former-commit-id: 854bfff859276e6a4c00cb3f04409a78f27cf8c8 --- .../TrigT2CaloCommon/TrigT2CaloCommon/IAlgToolCalo.h | 2 +- .../TrigAlgorithms/TrigT2CaloCommon/src/IAlgToolCalo.cxx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/IAlgToolCalo.h b/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/IAlgToolCalo.h index 908fe6ae24b..cbe4e2178da 100755 --- a/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/IAlgToolCalo.h +++ b/Trigger/TrigAlgorithms/TrigT2CaloCommon/TrigT2CaloCommon/IAlgToolCalo.h @@ -209,7 +209,7 @@ class IAlgToolCalo: public virtual IAlgTool, CaloCellContainer** m_CaloCellContPoint; // Objects that the Tools should not worry about protected: - bool lardecoded, tiledecoded; + bool m_lardecoded, m_tiledecoded; /** error control */ uint32_t m_error; /** caloDDE (of the cluster 2nd layer hottest cell) */ diff --git a/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/IAlgToolCalo.cxx b/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/IAlgToolCalo.cxx index e2e5759757d..327d6f0f7ff 100755 --- a/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/IAlgToolCalo.cxx +++ b/Trigger/TrigAlgorithms/TrigT2CaloCommon/src/IAlgToolCalo.cxx @@ -80,8 +80,8 @@ StatusCode IAlgToolCalo::initialize() if ( m_limit.size() != 0 ){ m_calib->initialize(m_limit,m_dimension,m_correction); } - lardecoded=true; - tiledecoded=true; + m_lardecoded=true; + m_tiledecoded=true; return StatusCode::SUCCESS; } // End of initialize @@ -392,14 +392,14 @@ void IAlgToolCalo::storeCells( void ) { } } // End of if retrieve // Now I have a LAr container - if ( lardecoded ) + if ( m_lardecoded ) for ( m_it = m_iBegin; m_it != m_iEnd; ++m_it) { CaloCell* larcell = (CaloCell*)(*m_it)->clone(); ContainerLAr->push_back(larcell); } ATH_MSG_DEBUG( "LAr Container size : " << ContainerLAr->size() ); // Now I have a Tile container - if ( tiledecoded ) + if ( m_tiledecoded ) for ( m_itt = m_itBegin; m_itt != m_itEnd; ++m_itt) { CaloCell* tilecell = (CaloCell*)(*m_itt)->clone(); ContainerTile->push_back(tilecell); -- GitLab