/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/ServiceRegistry/interface/InternalContext.h
37 строк
1 KB
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
#ifndef FWCore_ServiceRegistry_InternalContext_h #define FWCore_ServiceRegistry_InternalContext_h /**\class edm::InternalContext Description: Holds context information for the link between a MixingModule context and a module called by unscheduled production adding data to a secondary Principal. */ // // Original Author: W. David Dagenhart // Created: 7/31/2013 #include "DataFormats/Provenance/interface/EventID.h" #include <iosfwd> namespace edm { class ModuleCallingContext; class InternalContext { public: InternalContext(EventID const& eventID, ModuleCallingContext const*); EventID const& eventID() const { return eventID_; } // event#==0 is a lumi, event#==0&lumi#==0 is a run ModuleCallingContext const* moduleCallingContext() const { return moduleCallingContext_; } private: EventID eventID_; // event#==0 is a lumi, event#==0&lumi#==0 is a run ModuleCallingContext const* moduleCallingContext_; }; std::ostream& operator<<(std::ostream&, InternalContext const&); } // namespace edm #endif