/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/Utilities/interface/Product.h
28 строк
853 B
camolezi
removed boost dependencies
07 июн 2020, 22:44
07 июн 2020, 22:44
65eda09
Код
Авторство
О чём код?
#ifndef PhysicsTools_Utilities_Product_h #define PhysicsTools_Utilities_Product_h namespace funct { template <typename A, typename B> struct ProductStruct { ProductStruct(const A& a, const B& b) : _1(a), _2(b) {} double operator()() const { return _1() * _2(); } operator double() const { return _1() * _2(); } double operator()(double x) const { return _1(x) * _2(x); } double operator()(double x, double y) const { return _1(x, y) * _2(x, y); } A _1; B _2; }; template <typename A, typename B> struct Product { typedef ProductStruct<A, B> type; static type combine(const A& a, const B& b) { return type(a, b); } }; template <typename A, typename B> inline typename Product<A, B>::type operator*(const A& a, const B& b) { return Product<A, B>::combine(a, b); } } // namespace funct #endif