/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/Utils/interface/PtMinSelector.h
21 строка
399 B
Cms Build
Clang-Format
05 июн 2019, 13:53
05 июн 2019, 13:53
bbbc152
Код
Авторство
О чём код?
#ifndef RecoAlgos_PtMinSelector_h #define RecoAlgos_PtMinSelector_h /* \class PtMinSelector * * \author Luca Lista, INFN * * $Id: PtMinSelector.h,v 1.6 2007/06/18 18:33:54 llista Exp $ */ struct PtMinSelector { PtMinSelector(double ptMin) : ptMin_(ptMin) {} template <typename T> bool operator()(const T& t) const { return t.pt() >= ptMin_; } private: double ptMin_; }; #endif