/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/ServiceRegistry/src/ModuleConsumesESInfo.cc
21 строка
542 B
W. David Dagenhart
Print ES module dependences from Tracer
12 фев 2025, 22:47
12 фев 2025, 22:47
57670a8
Код
Авторство
О чём код?
#include "FWCore/ServiceRegistry/interface/ModuleConsumesESInfo.h" namespace edm { ModuleConsumesESInfo::ModuleConsumesESInfo() : transitionOfConsumer_(Transition::Event), produceMethodIDOfProducer_(0), isSource_(false), isLooper_(false), moduleLabelMismatch_(false) {} std::string_view ModuleConsumesESInfo::moduleBaseType() const { if (isLooper_) { return "ESProducerLooper"; } else if (isSource_) { return "ESSource"; } return "ESProducer"; } } // namespace edm