ATLAS Offline Software
Loading...
Searching...
No Matches
IPixelToTPIDTool.icc
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4namespace Trk {
5
6inline float
7IPixelToTPIDTool::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
16inline std::vector<float>
17IPixelToTPIDTool::getLikelihoods(double dedx, double p, int nGoodPixels) const
18{
19
20 return getLikelihoods(Gaudi::Hive::currentContext(), dedx, p, nGoodPixels);
21}
22
23inline float
24IPixelToTPIDTool::getMass(double dedx, double p, int nGoodPixels) const
25{
26 return getMass(Gaudi::Hive::currentContext(), dedx, p, nGoodPixels);
27}
28}