ATLAS Offline Software
IPixelToTPIDTool.icc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 namespace Trk {
5 
6 inline float
7 IPixelToTPIDTool::dEdx(const Trk::Track& track,
8  int& nUsedHits,
9  int& nUsedIBLOverflowHits) const
10 {
11 
12  return dEdx(
13  Gaudi::Hive::currentContext(), track, nUsedHits, nUsedIBLOverflowHits);
14 }
15 
16 inline std::vector<float>
17 IPixelToTPIDTool::getLikelihoods(double dedx, double p, int nGoodPixels) const
18 {
19 
20  return getLikelihoods(Gaudi::Hive::currentContext(), dedx, p, nGoodPixels);
21 }
22 
23 inline float
24 IPixelToTPIDTool::getMass(double dedx, double p, int nGoodPixels) const
25 {
26  return getMass(Gaudi::Hive::currentContext(), dedx, p, nGoodPixels);
27 }
28 }