ATLAS Offline Software
Loading...
Searching...
No Matches
IDetailedTrackTruthSimilarity.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
10
11#ifndef IDETAILEDTRACKTRUTHSIMILARITY_H
12#define IDETAILEDTRACKTRUTHSIMILARITY_H
13
14#include "GaudiKernel/IAlgTool.h"
15
16// Forard declarations of types.
18
19namespace Trk {
20
21 static const InterfaceID IID_IDetailedTrackTruthSimilarity("Trk::IDetailedTrackTruthSimilarity",1,0);
22
27
28 class IDetailedTrackTruthSimilarity : virtual public IAlgTool {
29
30 public:
31
32 static const InterfaceID& interfaceID() { return IID_IDetailedTrackTruthSimilarity; }
33
40 virtual double trackTruthSimilarity(const DetailedTrackTruth& dtt) const = 0;
41
42 };
43
44} // namespace Trk
45
46#endif/*IDETAILEDTRACKTRUTHSIMILARITY_H*/
Interface for track-truth match quality estimator tools.
virtual double trackTruthSimilarity(const DetailedTrackTruth &dtt) const =0
This method returns a number representing the quality of match between the track and the TruthTraject...
Ensure that the ATLAS eigen extensions are properly loaded.
static const InterfaceID IID_IDetailedTrackTruthSimilarity("Trk::IDetailedTrackTruthSimilarity", 1, 0)