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