/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/TestProcessor/src/Event.cc
51 строка
975 B
W. David Dagenhart
Only changes from scram build code-format-all
30 апр 2019, 22:05
30 апр 2019, 22:05
23d7339
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: FWCore/TestProcessor // Class : Event // // 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/Event.h" namespace edm { namespace test { // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // Event::Event(EventPrincipal const& iPrincipal, std::string iModuleLabel, std::string iProcessName, bool modulePassed) : principal_{&iPrincipal}, label_{std::move(iModuleLabel)}, processName_{std::move(iProcessName)}, modulePassed_(modulePassed) {} // // member functions // // // const member functions // // // static member functions // } // namespace test } // namespace edm