ATLAS Offline Software
Loading...
Searching...
No Matches
TruthMatchRatio.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
8
9namespace Trk {
10
11//================================================================
12TruthMatchRatio::TruthMatchRatio(const std::string& type, const std::string& name, const IInterface* parent)
13 : CommonTruthMatchWeights(type,name,parent)
14{
15 declareInterface<IDetailedTrackTruthSimilarity>(this);
16}
17
18//================================================================
20{
21 double prd_track=0;
22 double prd_common=0;
23 for(unsigned i=0; i<SubDetHitStatistics::NUM_SUBDETECTORS; i++) {
24 prd_common += m_subDetWeights[i] * dt.statsCommon()[SubDetHitStatistics::SubDetType(i)];
25 prd_track += m_subDetWeights[i] * dt.statsTrack()[SubDetHitStatistics::SubDetType(i)];
26 }
27 return (prd_track>0)? prd_common/prd_track : 0.;
28}
29
30//================================================================
31
32} // namespace Trk
A struture to keep per-subdetector numbers of hits for truth matching.
CommonTruthMatchWeights(const std::string &type, const std::string &name, const IInterface *parent)
virtual double trackTruthSimilarity(const DetailedTrackTruth &dtt) const override
The match quality returned by this tool is a (weighted) ratio of the number of hits common to the tra...
TruthMatchRatio(const std::string &type, const std::string &name, const IInterface *parent)
Ensure that the ATLAS eigen extensions are properly loaded.