/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/CandUtils/interface/AddFourMomenta.h
27 строк
720 B
Cms Build
Clang-Format
03 июн 2019, 06:44
03 июн 2019, 06:44
6a63925
Код
Авторство
О чём код?
#ifndef CommonTools_CandUtils_AddFourMomenta_h #define CommonTools_CandUtils_AddFourMomenta_h /** \class AddFourMomenta * * set up a composite reco::Candidate adding its * daughters four-momenta and electric charge * * \author Luca Lista, INFN * * \version $Revision: 1.9 $ * * $Id: AddFourMomenta.h,v 1.9 2007/01/09 09:14:42 llista Exp $ * */ #include "DataFormats/Candidate/interface/CandidateFwd.h" #include "FWCore/ParameterSet/interface/ParameterSetfwd.h" struct AddFourMomenta { /// default constructor AddFourMomenta() {} /// constructor explicit AddFourMomenta(const edm::ParameterSet&) {} /// set up a candidate void set(reco::Candidate& c) const; }; #endif