Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:30

0001 #ifndef CondCore_HDF5ESSource_Record_h
0002 #define CondCore_HDF5ESSource_Record_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     CondCore/HDF5ESSource
0006 // Class  :     Record
0007 //
0008 /**\class Record Record.h "Record.h"
0009 
0010  Description: [one line class summary]
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Christopher Jones
0018 //         Created:  Tue, 20 Jun 2023 14:36:37 GMT
0019 //
0020 
0021 // system include files
0022 #include <vector>
0023 #include <string>
0024 
0025 // user include files
0026 #include "IOVSyncValue.h"
0027 #include "DataProduct.h"
0028 
0029 // forward declarations
0030 
0031 namespace cond::hdf5 {
0032   struct Record {
0033     std::string name_;
0034     std::vector<IOVSyncValue> iovFirsts_;
0035     std::vector<IOVSyncValue> iovLasts_;
0036     std::vector<DataProduct> dataProducts_;
0037     bool iovIsRunLumi_ = true;
0038   };
0039 }  // namespace cond::hdf5
0040 
0041 #endif