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

TrkSurfaces: Fix compilation of TrkValAlgs.

numberOfInstantiations methods need to be static.



Former-commit-id: fc3e1bf0
parent b1512d98
No related branches found
No related tags found
No related merge requests found
/*
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 {
virtual std::string name() const = 0;
/**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 */
unsigned int numberOfFreeInstantiations();
static unsigned int numberOfFreeInstantiations();
/** method to associate the associated Trk::Layer which is alreay owned
- 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