/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/EcalObjects/src/EcalWeight.cc
18 строк
427 B
Cms Build
Clang-Format
22 май 2019, 04:56
22 май 2019, 04:56
28f175a
Код
Авторство
О чём код?
/** * Author: Shahram Rahatlou, University of Rome & INFN * Created: 22 Feb 2006 * $Id: $ **/ #include "CondFormats/EcalObjects/interface/EcalWeight.h" EcalWeight::EcalWeight() { wgt_ = 0.0; } EcalWeight::EcalWeight(const double& awgt) { wgt_ = awgt; } EcalWeight::EcalWeight(const EcalWeight& awgt) { wgt_ = awgt.wgt_; } EcalWeight& EcalWeight::operator=(const EcalWeight& rhs) { wgt_ = rhs.wgt_; return *this; }