/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/src/OutputModuleDescription.h
25 строк
828 B
W. David Dagenhart
Remove SubProcess and references in EventProcessor related code
14 апр 2025, 17:41
14 апр 2025, 17:41
f2757a0
Код
Авторство
О чём код?
#ifndef FWCore_Framework_OutputModuleDescription_h #define FWCore_Framework_OutputModuleDescription_h /*---------------------------------------------------------------------- OutputModuleDescription : the stuff that is needed to configure an output module that does not come in through the ParameterSet ----------------------------------------------------------------------*/ #include "DataFormats/Provenance/interface/BranchIDList.h" namespace edm { class BranchIDListHelper; struct OutputModuleDescription { //OutputModuleDescription() : maxEvents_(-1) {} explicit OutputModuleDescription(BranchIDLists const& branchIDLists, int maxEvents = -1) : branchIDLists_(&branchIDLists), maxEvents_(maxEvents) {} BranchIDLists const* branchIDLists_; int maxEvents_; }; } // namespace edm #endif