/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/CondHDF5ESSource/plugins/Record.h
41 строка
781 B
Christopher Jones
Added CondCore/CondHDF5ESSource
31 июл 2023, 19:59
31 июл 2023, 19:59
c1d83e5
Код
Авторство
О чём код?
#ifndef CondCore_HDF5ESSource_Record_h #define CondCore_HDF5ESSource_Record_h // -*- C++ -*- // // Package: CondCore/HDF5ESSource // Class : Record // /**\class Record Record.h "Record.h" Description: [one line class summary] Usage: <usage> */ // // Original Author: Christopher Jones // Created: Tue, 20 Jun 2023 14:36:37 GMT // // system include files #include <vector> #include <string> // user include files #include "IOVSyncValue.h" #include "DataProduct.h" // forward declarations namespace cond::hdf5 { struct Record { std::string name_; std::vector<IOVSyncValue> iovFirsts_; std::vector<IOVSyncValue> iovLasts_; std::vector<DataProduct> dataProducts_; bool iovIsRunLumi_ = true; }; } // namespace cond::hdf5 #endif