/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/TestProcessor/src/LuminosityBlock.cc
24 строки
716 B
W. David Dagenhart
Implement support for concurrent runs in the Framework
07 окт 2022, 17:43
07 окт 2022, 17:43
b38b9e7
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: FWCore/TestProcessor // Class : LuminosityBlock // // Implementation: // [Notes on implementation] // // Original Author: Chris Jones // Created: Mon, 30 Apr 2018 18:51:33 GMT // #include "FWCore/TestProcessor/interface/LuminosityBlock.h" namespace edm { namespace test { LuminosityBlock::LuminosityBlock(std::shared_ptr<LuminosityBlockPrincipal const> iPrincipal, std::string iModuleLabel, std::string iProcessName) : principal_{std::move(iPrincipal)}, label_{std::move(iModuleLabel)}, processName_{std::move(iProcessName)} {} } // namespace test } // namespace edm