/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/FWLite/src/RunHistoryGetter.cc
29 строк
623 B
W. David Dagenhart
From scram b code-format-all (clang-format)
10 май 2019, 17:51
10 май 2019, 17:51
82e0ab0
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: DataFormats // Class : LumiHistoryGetter // // Implementation: // [Notes on implementation] // // Original Author: // Created: Wed Feb 10 11:15:18 CST 2010 // // user include files #include "DataFormats/FWLite/interface/RunHistoryGetter.h" namespace fwlite { // // constructors and destructor // RunHistoryGetter::RunHistoryGetter(const Run* run) { run_ = run; } RunHistoryGetter::~RunHistoryGetter() {} // // const member functions // const edm::ProcessHistory& RunHistoryGetter::history() const { return run_->history(); } } // namespace fwlite