/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/RunInfo/plugins/LHCInfoPerFillWriter.cc
62 строки
2 KB
Andrea
Move ESHandle headers where needed
01 окт 2022, 22:02
01 окт 2022, 22:02
d6af27a
Код
Авторство
О чём код?
#include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/one/EDAnalyzer.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/EventSetup.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ServiceRegistry/interface/Service.h" #include "CondCore/DBOutputService/interface/PoolDBOutputService.h" #include "CondFormats/RunInfo/interface/LHCInfoPerFill.h" #include "CondFormats/DataRecord/interface/LHCInfoPerFillRcd.h" #include <memory> #include <iostream> class LHCInfoPerFillWriter : public edm::one::EDAnalyzer<> { public: explicit LHCInfoPerFillWriter(const edm::ParameterSet&) {} private: void beginJob() override {} void analyze(const edm::Event&, const edm::EventSetup&) override; void endJob() override {} }; void LHCInfoPerFillWriter::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) { LHCInfoPerFill lhcInfoPerFill; lhcInfoPerFill.setFillNumber(3); lhcInfoPerFill.setBunchesInBeam1(10); lhcInfoPerFill.setBunchesInBeam2(8); lhcInfoPerFill.setCollidingBunches(5); lhcInfoPerFill.setTargetBunches(4); lhcInfoPerFill.setFillType(lhcInfoPerFill.PROTONS); lhcInfoPerFill.setParticleTypeForBeam1(lhcInfoPerFill.PROTON); lhcInfoPerFill.setParticleTypeForBeam2(lhcInfoPerFill.PROTON); lhcInfoPerFill.setIntensityForBeam1(1016.5); lhcInfoPerFill.setIntensityForBeam2(1096.66); lhcInfoPerFill.setEnergy(7000); lhcInfoPerFill.setDelivLumi(2E-07); lhcInfoPerFill.setRecLumi(2E-07); lhcInfoPerFill.setInstLumi(0); lhcInfoPerFill.setInstLumiError(0); lhcInfoPerFill.setCreationTime(6561530930997627120); lhcInfoPerFill.setBeginTime(6561530930997627120); lhcInfoPerFill.setEndTime(6561530930997627120); lhcInfoPerFill.setInjectionScheme("None"); lhcInfoPerFill.setLumiPerBX({0.000114139, 0.000114139}); lhcInfoPerFill.setLhcState("some lhcState"); lhcInfoPerFill.setLhcComment("some lhcComment"); lhcInfoPerFill.setCtppsStatus("some ctppsStatus"); // store the info into a DB object edm::Service<cond::service::PoolDBOutputService> poolDbService; if (poolDbService.isAvailable()) poolDbService->writeOneIOV(lhcInfoPerFill, poolDbService->currentTime(), "LHCInfoPerFillRcd"); else throw cms::Exception("LHCInfoPerFillWriter") << "PoolDBService required."; } DEFINE_FWK_MODULE(LHCInfoPerFillWriter);