Skip to content
Snippets Groups Projects
Commit 3d2332c3 authored by scott snyder's avatar scott snyder
Browse files

InDetTrackSelectorTool: Fix compilation warning.

Compilation warning: Initialization ordering.



Former-commit-id: d87f46c1
parent 03c76cb1
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,8 @@ namespace InDet
//----------------------------------------------------------------------------
InDetCosmicTrackSelectorTool::InDetCosmicTrackSelectorTool(const std::string& t, const std::string& n, const IInterface* p)
: AthAlgTool(t,n,p),
m_magFieldSvc("AtlasFieldSvc",n),
m_trackSumToolAvailable(false)
m_trackSumToolAvailable(false),
m_magFieldSvc("AtlasFieldSvc",n)
{
declareInterface<ITrackSelectorTool>(this);
declareProperty("maxZ0", m_maxZ0 = 150.);
......
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