/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4Core/SensitiveDetector/interface/AttachSD.h
31 строка
810 B
Christopher Jones
Removed loading of plugins from attachSD
08 июн 2021, 18:13
08 июн 2021, 18:13
587f2b0
Код
Авторство
О чём код?
#ifndef SimG4Core_SensitiveDetector_AttachSD_h #define SimG4Core_SensitiveDetector_AttachSD_h #include <vector> #include <string> #include <unordered_map> #include <memory> namespace edm { class EventSetup; class ParameterSet; } // namespace edm class SensitiveDetectorCatalog; class SensitiveTkDetector; class SensitiveCaloDetector; class SensitiveDetectorMakerBase; class SimActivityRegistry; class SimTrackManager; namespace sim { std::pair<std::vector<SensitiveTkDetector *>, std::vector<SensitiveCaloDetector *>> attachSD( const std::unordered_map<std::string, std::unique_ptr<SensitiveDetectorMakerBase>> &, const edm::EventSetup &, const SensitiveDetectorCatalog &, edm::ParameterSet const &, const SimTrackManager *, SimActivityRegistry ®); }; #endif