/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/CandUtils/interface/CandSelector.h
25 строк
553 B
Christopher Jones
Avoid direct forward declarations of data product classes
21 янв 2026, 20:32
21 янв 2026, 20:32
72d73bd
Код
Авторство
О чём код?
#ifndef CandUtils_CandSelector_h #define CandUtils_CandSelector_h /** \class CandSelector * * Base class for all candidate selector * * \author Luca Lista, INFN * * \version $Revision: 1.3 $ * * $Id: CandSelector.h,v 1.3 2006/03/03 10:09:18 llista Exp $ * */ #include "DataFormats/Candidate/interface/CandidateOnlyFwd.h" class CandSelector { public: /// destructor virtual ~CandSelector(); /// return true if the candidate is selected virtual bool operator()(const reco::Candidate& c) const = 0; }; #endif