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

TrkSurfaces: Fix compilation of TrkValAlgs.

numberOfInstantiations methods need to be static.
parent 637f2e27
No related branches found
No related tags found
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/ */
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
...@@ -298,9 +298,9 @@ namespace Trk { ...@@ -298,9 +298,9 @@ namespace Trk {
virtual std::string name() const = 0; virtual std::string name() const = 0;
/**return number of surfaces currently created - needed for EDM monitor */ /**return number of surfaces currently created - needed for EDM monitor */
unsigned int numberOfInstantiations(); static unsigned int numberOfInstantiations();
/**return number of free surfaces currently created (i.e. those not belonging to a DE) - needed for EDM monitor */ /**return number of free surfaces currently created (i.e. those not belonging to a DE) - needed for EDM monitor */
unsigned int numberOfFreeInstantiations(); static unsigned int numberOfFreeInstantiations();
/** method to associate the associated Trk::Layer which is alreay owned /** method to associate the associated Trk::Layer which is alreay owned
- only allowed by LayerBuilder - only allowed by LayerBuilder
......
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