/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/TestProcessor/src/Run.cc
48 строк
913 B
Chris Jones
TestProcessor supports Run and Lumi product testing
09 янв 2020, 01:03
09 янв 2020, 01:03
d1d0dfe
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: FWCore/TestProcessor // Class : Run // // Implementation: // [Notes on implementation] // // Original Author: Chris Jones // Created: Mon, 30 Apr 2018 18:51:33 GMT // // system include files // user include files #include "FWCore/TestProcessor/interface/Run.h" namespace edm { namespace test { // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // Run::Run(std::shared_ptr<RunPrincipal const> iPrincipal, std::string iModuleLabel, std::string iProcessName) : principal_{std::move(iPrincipal)}, label_{std::move(iModuleLabel)}, processName_{std::move(iProcessName)} {} // // member functions // // // const member functions // // // static member functions // } // namespace test } // namespace edm