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

Merge branch 'master-calo-badchan-tool-fix-dependency' into 'master'

Fix dependency of CaloBadChanTool (ATLASRECTS-4635)

See merge request atlas/athena!15132
parents 5f7d36ba 069ece00
No related branches found
No related tags found
No related merge requests found
......@@ -28,8 +28,8 @@ public:
private:
ToolHandle<ICaloBadChanTool> m_larBCT;
ToolHandle<ICaloBadChanTool> m_tileBCT;
ToolHandle<ICaloBadChanTool> m_larBCT{this, "LArBadChanTool", "LArBadChanTool", "LAr bad channel tool"};
ToolHandle<ICaloBadChanTool> m_tileBCT{this, "TileBadChanTool", "TileBadChanTool", "Tile bad channel tool"};
const CaloCell_ID* m_caloID;
};
......
......@@ -10,8 +10,6 @@
CaloBadChanTool::CaloBadChanTool(const std::string& type, const std::string& name,
const IInterface* parent) :
AthAlgTool( type, name, parent),
m_larBCT("LArBadChanTool"),
m_tileBCT("TileBadChanTool"),
m_caloID(nullptr)
{
declareInterface<ICaloBadChanTool>(this);
......
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