#include <PhysicsTools/Utilities/interface/DeltaPhiMinPairSelector.h>
Public Member Functions | |
DeltaPhiMinPairSelector (double deltaPhiMin) | |
template<typename T1, typename T2> | |
bool | operator() (const T1 &t1, const T2 &t2) const |
Private Attributes | |
double | deltaPhiMin_ |
Definition at line 11 of file DeltaPhiMinPairSelector.h.
DeltaPhiMinPairSelector::DeltaPhiMinPairSelector | ( | double | deltaPhiMin | ) | [inline] |
Definition at line 12 of file DeltaPhiMinPairSelector.h.
00012 : 00013 deltaPhiMin_( deltaPhiMin ) { }
bool DeltaPhiMinPairSelector::operator() | ( | const T1 & | t1, | |
const T2 & | t2 | |||
) | const [inline] |
Definition at line 15 of file DeltaPhiMinPairSelector.h.
References deltaPhi(), and deltaPhiMin_.
00015 { 00016 return deltaPhi( t1.phi(), t2.phi() ) > deltaPhiMin_; 00017 }
double DeltaPhiMinPairSelector::deltaPhiMin_ [private] |