#include <PhysicsTools/UtilAlgos/interface/TwoObjectCalculator.h>
Public Member Functions | |
template<typename LHS, typename RHS> | |
double | operator() (const LHS &lhs, const RHS &rhs) |
Static Public Member Functions | |
static std::string | calculationType () |
static std::string | description () |
Definition at line 4 of file TwoObjectCalculator.h.
static std::string CosDphiCalculator::calculationType | ( | ) | [inline, static] |
static std::string CosDphiCalculator::description | ( | ) | [inline, static] |
double CosDphiCalculator::operator() | ( | const LHS & | lhs, | |
const RHS & | rhs | |||
) | [inline] |
Definition at line 5 of file TwoObjectCalculator.h.
References funct::cos().
00005 { 00006 double cdphi = cos(lhs.phi()-rhs.phi()); 00007 return cdphi; 00008 }