ATLAS Offline Software
Loading...
Searching...
No Matches
PointerPreds.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGHLTJETHYPO_POINTERPREDS_H
6#define TRIGHLTJETHYPO_POINTERPREDS_H
7
9
10struct PtrLess {
11 bool operator()(const pHypoJet& l, const pHypoJet& r){
12 return l.get() < r.get();
13 }
14};
15
16
17struct PtrEq {
18 bool operator() (const pHypoJet& l, const pHypoJet& r){
19 return l.get() == r.get();
20 }
21};
22
23#endif
std::shared_ptr< const HypoJet::IJet > pHypoJet
Definition HypoJetDefs.h:25
int r
Definition globals.cxx:22
bool operator()(const pHypoJet &l, const pHypoJet &r)
bool operator()(const pHypoJet &l, const pHypoJet &r)