/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Integration/plugins/OtherThingAlgorithm.h
29 строк
854 B
Chris Jones
Moved plugins to FWCore/Integration/plugins
10 янв 2023, 17:49
10 янв 2023, 17:49
974ebbd
Код
Авторство
О чём код?
#ifndef Integration_OtherThingAlgorithm_h #define Integration_OtherThingAlgorithm_h #include <string> #include "DataFormats/TestObjects/interface/OtherThingCollectionfwd.h" #include "DataFormats/TestObjects/interface/ThingCollectionfwd.h" #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Utilities/interface/EDGetToken.h" namespace edmtest { class OtherThingAlgorithm { public: OtherThingAlgorithm() : theDebugLevel(0) {} /// Runs the algorithm and returns a list of OtherThings /// The user declares the vector and calls this method. void run(edm::Handle<ThingCollection> const& iThingHandle, OtherThingCollection& otherThingCollection, bool useRefs = true, bool refsAreTransient = false) const; private: int theDebugLevel; }; } // namespace edmtest #endif