ATLAS Offline Software
Loading...
Searching...
No Matches
FitQuality.icc
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5namespace Trk {
6
7inline FitQuality*
8FitQuality::clone() const
9{
10 return new FitQuality(*this);
11}
12
13inline std::unique_ptr<FitQuality>
14FitQuality::uniqueClone() const
15{
16 return std::unique_ptr<FitQuality>(clone());
17}
18
19}
20