/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/interface/stream/ProducingModuleHelper.h
30 строк
844 B
Matti Kortelainen
Use WaitingTaskHolder to signal doneWaiting() instead of WaitingTaskWithArenalHolder in framework
08 янв 2025, 22:50
08 янв 2025, 22:50
e77e887
Код
Авторство
О чём код?
#ifndef FWCore_Framework_stream_ProducingModuleHelper_h #define FWCore_Framework_stream_ProducingModuleHelper_h // -*- C++ -*- // // Package: FWCore/Framework // // Original Author: W. David Dagenhart // Created: 1 December 2017 namespace edm { class Event; class EventSetup; class WaitingTaskHolder; namespace stream { namespace impl { class ExternalWork; } // Two overloaded functions, the first is called by doAcquire_ // when the module inherits from ExternalWork. The first function // calls acquire, while the second function does nothing. void doAcquireIfNeeded(impl::ExternalWork*, Event const&, EventSetup const&, WaitingTaskHolder&&); void doAcquireIfNeeded(void*, Event const&, EventSetup const&, WaitingTaskHolder&&); } // namespace stream } // namespace edm #endif