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

InDetTrackSelectorTool: Fix compilation warning.

Compilation warning: Initialization ordering.
parent 1c4febfd
No related merge requests found
...@@ -24,8 +24,8 @@ namespace InDet ...@@ -24,8 +24,8 @@ namespace InDet
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
InDetCosmicTrackSelectorTool::InDetCosmicTrackSelectorTool(const std::string& t, const std::string& n, const IInterface* p) InDetCosmicTrackSelectorTool::InDetCosmicTrackSelectorTool(const std::string& t, const std::string& n, const IInterface* p)
: AthAlgTool(t,n,p), : AthAlgTool(t,n,p),
m_magFieldSvc("AtlasFieldSvc",n), m_trackSumToolAvailable(false),
m_trackSumToolAvailable(false) m_magFieldSvc("AtlasFieldSvc",n)
{ {
declareInterface<ITrackSelectorTool>(this); declareInterface<ITrackSelectorTool>(this);
declareProperty("maxZ0", m_maxZ0 = 150.); 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