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