diff --git a/TileCalorimeter/TileRecAlgs/src/TileRawChannelToHit.cxx b/TileCalorimeter/TileRecAlgs/src/TileRawChannelToHit.cxx index 1b072c1bece9e74c21dc6a0a79237f5c6c3051ed..58990b13e424982fd2fa150cbfef250827b0910f 100644 --- a/TileCalorimeter/TileRecAlgs/src/TileRawChannelToHit.cxx +++ b/TileCalorimeter/TileRecAlgs/src/TileRawChannelToHit.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //***************************************************************************** @@ -93,10 +93,6 @@ StatusCode TileRawChannelToHit::initialize() { StatusCode TileRawChannelToHit::execute() { - // disable checks for TileID and remember previous state - bool do_checks = m_tileID->do_checks(); - m_tileID->set_do_checks(false); - /* zero all counters and sums */ int nHit = 0; int nChan = 0; @@ -201,8 +197,6 @@ StatusCode TileRawChannelToHit::execute() { ATH_MSG_VERBOSE( "TileHitVector container registered to the TES with name" << m_hitVectorKey.key() ); - m_tileID->set_do_checks(do_checks); // set back this flag to TileID - return StatusCode::SUCCESS; }