/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/DT/plugins/DTKeyedConfigDBInit.cc
66 строк
2 KB
Nicola Amapane
Migrate DT code to new PoolDBOutputService
15 ноя 2021, 18:56
15 ноя 2021, 18:56
801a84b
Код
Авторство
О чём код?
/* * See header file for a description of this class. * * $Date: 2010/06/01 10:34:12 $ * $Revision: 1.3 $ * \author Paolo Ronchese INFN Padova * */ //----------------------- // This Class' Header -- //----------------------- #include "CondTools/DT/plugins/DTKeyedConfigDBInit.h" //------------------------------- // Collaborating Class Headers -- //------------------------------- #include "CondFormats/DTObjects/interface/DTKeyedConfig.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ServiceRegistry/interface/Service.h" #include "CondCore/DBOutputService/interface/PoolDBOutputService.h" #include "CondCore/DBOutputService/interface/KeyedElement.h" //--------------- // C++ Headers -- //--------------- #include <iostream> //------------------- // Initializations -- //------------------- //---------------- // Constructors -- //---------------- DTKeyedConfigDBInit::DTKeyedConfigDBInit(const edm::ParameterSet& ps) : container(ps.getParameter<std::string>("container")), iov(ps.getParameter<std::string>("iov")) {} //-------------- // Destructor -- //-------------- DTKeyedConfigDBInit::~DTKeyedConfigDBInit() {} //-------------- // Operations -- //-------------- void DTKeyedConfigDBInit::beginJob() { return; } void DTKeyedConfigDBInit::analyze(const edm::Event& e, const edm::EventSetup& c) { return; } void DTKeyedConfigDBInit::endJob() { edm::Service<cond::service::PoolDBOutputService> outdb; DTKeyedConfig bk; bk.setId(999999999); bk.add("dummy"); cond::KeyedElement k(&bk, 999999999); outdb->writeOneIOV(*(k.m_obj), k.m_key, container); std::vector<cond::Time_t> kl; kl.push_back(999999999); outdb->writeOneIOV(kl, 1, iov); return; } DEFINE_FWK_MODULE(DTKeyedConfigDBInit);