/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/EcalCommonData/plugins/EcalSimParametersESModule.cc
78 строк
3 KB
Ianna Osborne
address issue 33373
05 ноя 2021, 13:10
05 ноя 2021, 13:10
806de2f
Код
Авторство
О чём код?
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h" #include "FWCore/ParameterSet/interface/ParameterSetDescription.h" #include "FWCore/Framework/interface/ModuleFactory.h" #include "FWCore/Framework/interface/ESProducer.h" #include "FWCore/Framework/interface/ESTransientHandle.h" #include "CondFormats/GeometryObjects/interface/EcalSimulationParameters.h" #include "DetectorDescription/Core/interface/DDCompactView.h" #include "DetectorDescription/DDCMS/interface/DDCompactView.h" #include "Geometry/Records/interface/IdealGeometryRecord.h" #include "Geometry/EcalCommonData/interface/EcalSimParametersFromDD.h" #include <memory> //#define EDM_ML_DEBUG class EcalSimParametersESModule : public edm::ESProducer { public: EcalSimParametersESModule(const edm::ParameterSet&); using ReturnType = std::unique_ptr<EcalSimulationParameters>; static void fillDescriptions(edm::ConfigurationDescriptions&); ReturnType produce(const IdealGeometryRecord&); private: edm::ESGetToken<DDCompactView, IdealGeometryRecord> cpvTokenDDD_; edm::ESGetToken<cms::DDCompactView, IdealGeometryRecord> cpvTokenDD4hep_; const bool fromDD4hep_; const std::string name_; }; EcalSimParametersESModule::EcalSimParametersESModule(const edm::ParameterSet& ps) : fromDD4hep_(ps.getParameter<bool>("fromDD4hep")), name_(ps.getParameter<std::string>("name")) { auto cc = setWhatProduced(this, name_); if (fromDD4hep_) { cpvTokenDD4hep_ = cc.consumesFrom<cms::DDCompactView, IdealGeometryRecord>(edm::ESInputTag()); } else { cpvTokenDDD_ = cc.consumesFrom<DDCompactView, IdealGeometryRecord>(edm::ESInputTag()); } #ifdef EDM_ML_DEBUG edm::LogVerbatim("EcalGeom") << "EcalSimParametersESModule::EcalSimParametersESModule called with dd4hep: " << fromDD4hep_ << " for " << name_; #endif } void EcalSimParametersESModule::fillDescriptions(edm::ConfigurationDescriptions& descriptions) { edm::ParameterSetDescription desc; desc.add<bool>("fromDD4hep", false); desc.add<std::string>("name", "EcalHitsEB"); descriptions.add("ecalSimulationParametersEB", desc); } EcalSimParametersESModule::ReturnType EcalSimParametersESModule::produce(const IdealGeometryRecord& iRecord) { #ifdef EDM_ML_DEBUG edm::LogVerbatim("EcalGeom") << "EcalSimParametersESModule::produce(const IdealGeometryRecord& iRecord)"; #endif auto ptp = std::make_unique<EcalSimulationParameters>(); EcalSimParametersFromDD builder; if (fromDD4hep_) { #ifdef EDM_ML_DEBUG edm::LogVerbatim("EcalGeom") << "EcalSimParametersESModule::Try to access cms::DDCompactView"; #endif edm::ESTransientHandle<cms::DDCompactView> cpv = iRecord.getTransientHandle(cpvTokenDD4hep_); builder.build(&(*cpv), name_, *ptp); } else { #ifdef EDM_ML_DEBUG edm::LogVerbatim("EcalGeom") << "EcalSimParametersESModule::Try to access DDCompactView"; #endif edm::ESTransientHandle<DDCompactView> cpv = iRecord.getTransientHandle(cpvTokenDDD_); builder.build(&(*cpv), name_, *ptp); } return ptp; } DEFINE_FWK_EVENTSETUP_MODULE(EcalSimParametersESModule);