/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/ServiceRegistry/src/InternalContext.cc
18 строк
611 B
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
#include "FWCore/ServiceRegistry/interface/InternalContext.h" #include "FWCore/ServiceRegistry/interface/ModuleCallingContext.h" #include <ostream> namespace edm { InternalContext::InternalContext(EventID const& eventID, ModuleCallingContext const* moduleCallingContext) : eventID_(eventID), moduleCallingContext_(moduleCallingContext) {} std::ostream& operator<<(std::ostream& os, InternalContext const& ic) { os << "InternalContext " << ic.eventID() << "\n"; if (ic.moduleCallingContext()) { os << " " << *ic.moduleCallingContext(); } return os; } } // namespace edm