Skip to content
Snippets Groups Projects
Commit 71dc9f47 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'cppcheck.TileFastCaloSim-20221129' into 'master'

TileFastCaloSim: Fix cppcheck warnings.

See merge request atlas/athena!58846
parents 6729fc1a 504ca908
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
//*****************************************************************************
......@@ -49,6 +49,9 @@
TileFCSmStepToTileHitVec::TileFCSmStepToTileHitVec(const std::string& name, ISvcLocator* pSvcLocator)
: AthAlgorithm(name, pSvcLocator)
, m_geoModSvc("GeoModelSvc",name)
, m_FCS_StepInfo ("MergedEventSteps")
, m_hitVec ("TileHitVec_FCS")
, m_infoName ("TileInfo")
, m_tileID(nullptr)
, m_tileInfo(nullptr)
, m_tileMgr(nullptr)
......@@ -57,10 +60,6 @@ TileFCSmStepToTileHitVec::TileFCSmStepToTileHitVec(const std::string& name, ISvc
, m_allHits(0)
, m_uShape(-1)
{
m_FCS_StepInfo = "MergedEventSteps";
m_hitVec = "TileHitVec_FCS";
m_infoName = "TileInfo";
declareProperty( "GeoModelSvc", m_geoModSvc );
declareProperty( "TileCalculator", m_calc);
declareProperty("StepInfoCollection", m_FCS_StepInfo, "Name of input container (default=TileHitCnt)");
......
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