#include <MatchByDRDPt.h>
Public Member Functions | |
MatchByDRDPt (const edm::ParameterSet &cfg) | |
bool | operator() (const T1 &t1, const T2 &t2) const |
Private Attributes | |
reco::MatchByDR< T1, T2 > | deltaR_ |
double | maxDPtRel_ |
Definition at line 11 of file MatchByDRDPt.h.
reco::MatchByDRDPt< T1, T2 >::MatchByDRDPt | ( | const edm::ParameterSet & | cfg | ) | [inline] |
Definition at line 13 of file MatchByDRDPt.h.
: deltaR_(cfg), maxDPtRel_(cfg.getParameter<double>("maxDPtRel")) {}
bool reco::MatchByDRDPt< T1, T2 >::operator() | ( | const T1 & | t1, |
const T2 & | t2 | ||
) | const [inline] |
Definition at line 16 of file MatchByDRDPt.h.
References reco::MatchByDRDPt< T1, T2 >::deltaR_, and reco::MatchByDRDPt< T1, T2 >::maxDPtRel_.
{ return fabs(t1.pt()-t2.pt())/t2.pt()<maxDPtRel_ && deltaR_(t1,t2); }
reco::MatchByDR<T1,T2> reco::MatchByDRDPt< T1, T2 >::deltaR_ [private] |
Definition at line 21 of file MatchByDRDPt.h.
Referenced by reco::MatchByDRDPt< T1, T2 >::operator()().
double reco::MatchByDRDPt< T1, T2 >::maxDPtRel_ [private] |
Definition at line 22 of file MatchByDRDPt.h.
Referenced by reco::MatchByDRDPt< T1, T2 >::operator()().