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

TileRecAlgs: Remove calls to set_do_checks.

    
Remove MT-unsafe calls to set_do_checks.  They should really be useless anyhow,
as checks are disabled for standard jobs.
parent 2546250b
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-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;
}
......
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