#include <MatchLessByDPt.h>
Public Member Functions | |
MatchLessByDPt (const edm::ParameterSet &cfg, const C1 &c1, const C2 &c2) | |
bool | operator() (const std::pair< size_t, size_t > &p1, const std::pair< size_t, size_t > &p2) const |
Private Attributes | |
const C1 & | c1_ |
const C2 & | c2_ |
Definition at line 11 of file MatchLessByDPt.h.
reco::MatchLessByDPt< C1, C2 >::MatchLessByDPt | ( | const edm::ParameterSet & | cfg, |
const C1 & | c1, | ||
const C2 & | c2 | ||
) | [inline] |
Definition at line 13 of file MatchLessByDPt.h.
bool reco::MatchLessByDPt< C1, C2 >::operator() | ( | const std::pair< size_t, size_t > & | p1, |
const std::pair< size_t, size_t > & | p2 | ||
) | const [inline] |
Definition at line 17 of file MatchLessByDPt.h.
References reco::MatchLessByDPt< C1, C2 >::c1_, and reco::MatchLessByDPt< C1, C2 >::c2_.
{ typedef typename C1::value_type T1; typedef typename C2::value_type T2; const T1& p1_1 = c1_[p1.first]; const T2& p1_2 = c2_[p1.second]; const T1& p2_1 = c1_[p2.first]; const T2& p2_2 = c2_[p2.second]; if ( fabs(p1_1.pt()-p1_2.pt())/p1_2.pt() < fabs(p2_1.pt()-p2_2.pt())/p2_2.pt() ) return true; return false; }
const C1& reco::MatchLessByDPt< C1, C2 >::c1_ [private] |
Definition at line 31 of file MatchLessByDPt.h.
Referenced by reco::MatchLessByDPt< C1, C2 >::operator()().
const C2& reco::MatchLessByDPt< C1, C2 >::c2_ [private] |
Definition at line 32 of file MatchLessByDPt.h.
Referenced by reco::MatchLessByDPt< C1, C2 >::operator()().