ATLAS Offline Software
Loading...
Searching...
No Matches
IMatchScoringTool.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4
5#ifndef TRIGGERMATCHINGTOOL_IMATCHSCORINGTOOL_H
6#define TRIGGERMATCHINGTOOL_IMATCHSCORINGTOOL_H
7
8#include "AsgTools/IAsgTool.h"
9
10namespace xAOD {
11 class IParticle;
12}
13
14namespace Trig {
16 class IMatchScoringTool : virtual public asg::IAsgTool {
17 public:
23 virtual float score(
24 const xAOD::IParticle &online,
25 const xAOD::IParticle &offline) const = 0;
26 }; //> end class IMatchScoringTool
27} //> end namespace Trig
28
29#endif //> !TRIGGERMATCHINGTOOL_IMATCHSCORINGTOOL_H
Interface class for scoring pairs of particles for matching.
virtual float score(const xAOD::IParticle &online, const xAOD::IParticle &offline) const =0
Calculate the matching score for a pair of particles.
Base class for the dual-use tool interface classes.
Definition IAsgTool.h:41
Class providing the definition of the 4-vector interface.
The common trigger namespace for trigger analysis tools.
ICaloAffectedTool is abstract interface for tools checking if 4 mom is in calo affected region.